Discuss this help topic in SecureBlackbox Forum
This event is fired when temporary stream is needed.
Declaration
[Java]
TSBPGPTemporaryStreamEvent getOnTemporaryStream();
void setOnTemporaryStream(TSBPGPTemporaryStreamEvent Value);
TSBPGPTemporaryStreamEvent.Callback OnTemporaryStream = new TSBPGPTemporaryStreamEvent.Callback() {
public void TSBPGPTemporaryStreamEventCallback(TObject arg0, TElPGPCreateStreamEventParams arg1) {
//...
}
}
Parameters
- Stream - newly created stream to be used by the reader.
- Filename - the name of the file to be read by the reader.
- FreeOnFinish - If True - the Stream will be destroyed by TElPGPReader automatically.
False - Stream will be freed manually by the application.
Description
This event is currently fired by TElPGPReader when it encounters the TAR archive which should be unpacked.
The temporary stream is used for storing the TAR file during unpacking.
OnCreateOutputStream or
OnRequestOutputFile event will be fired for each file in the TAR archive.
Discuss this help topic in SecureBlackbox Forum