SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_file_extraction_start Event

Reports the beginning of file extraction process.

Syntax

class PGPReaderFileExtractionStartEventParams(object):
  @property
  def filename() -> str: ...
  @property
  def timestamp() -> str: ...

# In class PGPReader:
@property
def on_file_extraction_start() -> Callable[[PGPReaderFileExtractionStartEventParams], None]: ...
@on_file_extraction_start.setter
def on_file_extraction_start(event_hook: Callable[[PGPReaderFileExtractionStartEventParams], None]) -> None: ...

Remarks

This event informs about the beginning of extraction of the next available file. A PGP message may contain more than one file. Filename parameter indicates the original file name, and the Timestamp its last modification time.

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