Specifications

COM+ reference
Gallagher & Robertson Glink: API reference manual 57
overwrite - if true, Glink overwrites the message mode receive buffer when it
has reached its limit, if false, Glink waits until one of the
messageModeReceive methods are called to clear the buffer.
See also:
messageModeReceive(),messageModeReceiveBytes(),
messageModeReceiveBytesSync(), messageModeReceiveSync(),
messageModeBufferOverwrite(boolean), emulate(String)
messageModeOff
void messageModeOff()
This method turns message mode off.
Restricted
messageModeOn
void messageModeOn(int bufsize, boolean processHostData)
This method instructs Glink to start message mode operation. In message mode,
all characters received from the host will be stored as "raw" data and made
available to the application with either the messageModeReceive or
messageModeReceiveSync calls.
Restricted
Parameters:
bufsize - Size of the buffer where the incoming characters are stored.
The buffer is cleared with the messageModeReceive or
messageModeReceiveSync calls. If the buffer reaches its
limit, the line modul will be suspended until a receive call
is issued to clear the buffer.
processHostData - Tells Glink to pass the received characters to the Glink
emulation class when set to true. When set to false, the
characters are stored in the message mode buffer only and
the Glink emulation is bypassed.