StepFlowResult
public enum StepFlowResult
Result which defines control flow of the steps.
-
Proceed to the next step.
Declaration
Swift
case proceed -
Jump to the step at the given index in the
Steparray and continue execution from there.Declaration
Swift
case jumpToStep(Int) -
StepRunnerState stops executing, and finishes immediately with a state of
StepRunnerState.success.Declaration
Swift
case finish -
StepRunnerState stops executing, and finishes immediately with a state of
StepRunnerState.failure.Declaration
Swift
case failure(Error)
View on GitHub
Install in Dash