Enum StepStatus
- Namespace
- FlowOrchestrator.Core.Abstractions
- Assembly
- FlowOrchestrator.Core.dll
Execution state of a step within a flow run.
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum StepStatus
Fields
Failed = 3The step threw an exception or returned a failed result.
Pending = 0The step has not yet started or is waiting to be rescheduled (polling).
Running = 1The step is currently executing.
Skipped = 4The step was intentionally not executed because its RunAfter conditions could not be satisfied (e.g. a dependency failed).
Succeeded = 2The step completed without error.