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
progressProgress.
finishedTaskCountFinished task count.
taskCountTotal running task count.
-
Informs when post-processing operations finished and some of them have errors.
Declaration
Swift
func postProcessDidCompletedWithError(tasks: [DMSwiftTypealias.PostProcess.FailedTask])Parameters
tasksFailed to complete tasks.
PostProcessDelegate Protocol Reference