Table of Contents

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 = 3

The step threw an exception or returned a failed result.

Pending = 0

The step has not yet started or is waiting to be rescheduled (polling).

Running = 1

The step is currently executing.

Skipped = 4

The step was intentionally not executed because its RunAfter conditions could not be satisfied (e.g. a dependency failed).

Succeeded = 2

The step completed without error.