OrchestrationRuntimeStatus Enum
- java.
lang. Object - java.
lang. Enum - com.
microsoft. durabletask. OrchestrationRuntimeStatus
- com.
- java.
public enum OrchestrationRuntimeStatus
extends java.lang.Enum<OrchestrationRuntimeStatus>
Enum describing the runtime status of the orchestration.
Fields
| CANCELED |
The orchestration canceled gracefully. |
| COMPLETED |
The orchestration completed normally. |
| CONTINUED_AS_NEW |
The orchestration is transitioning into a new instance. |
| FAILED |
The orchestration completed with an unhandled exception. |
| PENDING |
The orchestration was scheduled but hasn't started running. |
| RUNNING |
The orchestration started running. |
| TERMINATED |
The orchestration was abruptly terminated via a management API call. |
Methods inherited from java.lang.Enum
Methods inherited from java.lang.Object
Methods
valueOf(String name)
public static OrchestrationRuntimeStatus valueOf(String name)
Parameters
- name
- java.lang.String