Search found 3 matches
- Wed Jan 21, 2015 2:14 pm
- Forum: Language
- Topic: Closing a Connection in Conga
- Replies: 2
- Views: 8998
Re: Closing a Connection in Conga
There is a huge difference in doing 1: DRC.Send 'C1' 'some data' 1 and 2: DRC.Send 'C1' 'some data' ⋄ DRC.Close 'C1' When you ask Conga to send a buffer, Conga will queue the buffer and return to APL immediately, the buffer get send when the socket is ready. Conga does not have an event to signal w ...
- Mon Apr 29, 2013 8:38 am
- Forum: Language
- Topic: Conga simultaneously serving APL and Text
- Replies: 2
- Views: 10781
Re: Conga simultaneously serving APL and Text
There are no reason it should not work, Conga can handle multiple connection of different kind at the same time.
- Fri Oct 29, 2010 3:09 pm
- Forum: Functional Programming
- Topic: Conga in the Key of D
- Replies: 2
- Views: 12276
Re: Conga in the Key of D
1) Is one guaranteed to get a "BlockLast" event? No. When the connection is closed, Conga returns the content of the buffer received and marked it as BlockLast. 2) If you wait to terminate until the BlockLast, will your data received perhaps be longer than the specified content length in the header ...