Enum OrchestrationRuntimeStatus
Represents the possible runtime execution status values for an orchestration instance.
public enum OrchestrationRuntimeStatus
Fields
Canceled = 4
The orchestration was canceled.
Completed = 1
The orchestration ran to completion.
ContinuedAsNew = 2
The orchestration completed with ContinueAsNew as is in the process of restarting.
Failed = 3
The orchestration failed with an error.
Pending = 6
The orchestration was scheduled but has not yet started.
Running = 0
The orchestration is running (it may be actively running or waiting for input).
Terminated = 5
The orchestration was terminated via an API call.