Discuss this help topic in SecureBlackbox Forum
This event is used to write data to the socket.
Declaration
[Java]
TSBSendEvent getOnSend();
void setOnSend(TSBSendEvent Value);
TSBSendEvent.Callback OnSend = new TSBSendEvent.Callback() {
public void TSBSendEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - contains the block of data to be written to the socket.
- Size - the amount of data to be written (in bytes).
Description
This event is fired by TElBaseSocketClient when it wants to write a block of data to the socket.
Discuss this help topic in SecureBlackbox Forum