Discuss this help topic in SecureBlackbox Forum
This event is used to write the encrypted 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 - memory buffer containing the block of encoded data to be written to the socket.
- Size - the amount of data to be written (in bytes).
Description
This event is fired by TElSimpleSSLClient when it has encoded the data block and wants to write the encoded block to the socket.
The event is used when
UseInternalSocket is false.
Discuss this help topic in SecureBlackbox Forum