SecureBlackbox Lite 2020 Kotlin Edition

Questions / Feedback?

Progress Event

Reports the progress of data extraction.

Syntax

public open class DefaultArchivereaderEventListener : ArchivereaderEventListener {
  ...
  public override fun progress(e: ArchivereaderProgressEvent) {}
  ...
}

public class ArchivereaderProgressEvent {
  val processed: Long
  val total: Long
  val overallProcessed: Long
  val overallTotal: Long
  var cancel: Boolean
}

Remarks

Subscribe to this event to be notified about decompression progress.

Processed and Total report the progress of extraction of the current entry; OverallProcessed and OverallTotal report the progress of the whole operation. Set Cancel to true to stop the operation.

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