PostProcessDelegate

public protocol PostProcessDelegate : AnyObject

Post-process delegate

  • Informs when post-processing operations started.

    Declaration

    Swift

    func postProcessStarted()
  • Informs when all post-processing operations finished successfully.

    Declaration

    Swift

    func postProcessDidComplete()
  • Informs on changes in post-process operations count progress.

    Declaration

    Swift

    func postProcessDidUpdate(progress: Float, finishedTaskCount: Int64, taskCount: Int64)

    Parameters

    progress

    Progress.

    finishedTaskCount

    Finished task count.

    taskCount

    Total running task count.

  • Informs when post-processing operations finished and some of them have errors.

    Declaration

    Swift

    func postProcessDidCompletedWithError(tasks: [DMSwiftTypealias.PostProcess.FailedTask])

    Parameters

    tasks

    Failed to complete tasks.