StepCompletionResult
public enum StepCompletionResult
Result that indicates what to do next (i.e. control flow instruction)
when a step’s run method is complete.
This also contains the model which is passed betweeen the steps.
-
Proceed to the next step.
Declaration
Swift
case proceed(JSON) -
StepRunnerState stops executing, and finishes immediately with a state of
StepRunnerState.success.Declaration
Swift
case finish(JSON) -
StepRunnerState stops executing, and finishes immediately with a state of
StepRunnerState.failure.Declaration
Swift
case failure(Error, JSON)
View on GitHub
Install in Dash