StepRunnerState
public enum StepRunnerState : Equatable
Indicates the progress and status of the StepRunner.
-
Not yet started,
run()has not been called.Declaration
Swift
case notStarted -
The pipeline is running, and currently executing the step at the index.
Declaration
Swift
case inProgress(index: Int) -
The execution finished successfully.
Declaration
Swift
case success -
The execution failed with the given error.
Declaration
Swift
case failure(error: Error)
View on GitHub
Install in Dash