DurableRunStatus Enum

Definition

Represents the execution status of a durable workflow run.

public enum DurableRunStatus
type DurableRunStatus = 
Public Enum DurableRunStatus
Inheritance
DurableRunStatus

Fields

Name Value Description
NotFound 0

The workflow instance was not found.

Pending 1

The workflow is pending and has not started.

Running 2

The workflow is currently running.

Completed 3

The workflow completed successfully.

Failed 4

The workflow failed with an error.

Terminated 5

The workflow was terminated.

Suspended 6

The workflow is suspended.

Unknown 7

The workflow status is unknown.

Applies to