PostProcessingOperation

public class PostProcessingOperation : DefaultOperation

Post-processing operation.

  • Undocumented

    Declaration

    Swift

    public var onComplete: ((_ error: Error?) -> Void)?
  • Initiates with required parameters.

    Declaration

    Swift

    public init(fileStorage: FileStorage?, postProcessing: PostProcessing)

    Parameters

    fileStorage

    The file storage manager that used to pass to a PostProcessing object.

    postProcessing

    The post-process.

  • Prepare to start post-process.

    Declaration

    Swift

    public func prepareToStart(withSourceLocation sourceLocation: URL, filename: String, fileExtension: String)

    Parameters

    sourceLocation

    The reference to the source file on which post-processing should be performed.

    filename

    Local filename.

    fileExtension

    File extention.

  • Undocumented

    Declaration

    Swift

    override public func start()
  • Undocumented

    Declaration

    Swift

    override public func cancel()