Discuss this help topic in SecureBlackbox Forum
This event is fired when TElBZip2Writer needs a stream for compressed data.
Declaration
[Java]
TSBBZip2CompressionStreamNeededEvent getOnCompressionStreamNeeded();
void setOnCompressionStreamNeeded(TSBBZip2CompressionStreamNeededEvent Value);
TSBBZip2CompressionStreamNeededEvent.Callback OnCompressionStreamNeeded = new TSBBZip2CompressionStreamNeededEvent.Callback() {
public TElStream TSBBZip2CompressionStreamNeededEventCallback(TObject Sender) {
//...
}
}
Parameters
- Stream - stream where the compressed data should be saved.
Description
This event is fired by TElBZip2Writer when a stream is required to save the compressed data.
Reference to the stream should be passed via the Stream parameter.
Discuss this help topic in SecureBlackbox Forum