Discuss this help topic in SecureBlackbox Forum
This event is fired when a portion of binary data is received.
Declaration
[Java]
TSBWSBinaryDataEvent getOnBinaryData();
void setOnBinaryData(TSBWSBinaryDataEvent Value);
TSBWSBinaryDataEvent.Callback OnBinaryData = new TSBWSBinaryDataEvent.Callback() {
public void TSBWSBinaryDataEventCallback(TObject arg0, byte[] arg1, boolean arg2) {
//...
}
}
Parameters
- Buffer - buffer containing the received data.
- Size - specifies the size of the data in bytes.
- Last - indicates whether the received piece of data is the final part of a message.
Description
This event is fired when the component receives a piece of binary data.
Discuss this help topic in SecureBlackbox Forum