SecureBlackbox 2020 Android Edition

Questions / Feedback?

TransferCompleted Event

This event is fired when a customized upload or download operation completes.

Syntax

public class DefaultFtpserverEventListener implements FtpserverEventListener {
  ...
  public void transferCompleted(FtpserverTransferCompletedEvent e) {}
  ...
}

public class FtpserverTransferCompletedEvent {
  public long connectionID;
  public int operationStatus;
}

Remarks

This event is fired when a customized transfer operation completes. This event is only fired for operations handled by the user code, i.e. those intercepted with BeforeUploadFile or BeforeDownloadFile event, and with Action parameter set to fraCustom.

The ConnectionID parameter specifies the session to which the event belongs, and OperationStatus reports the outcome of the transfer operation.

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Android Edition - Version 20.0 [Build 8156]