WorkflowState Enumeration |
Contains the states in which a workflow can be. A workflow can only be in one state at a time.
Namespace:
Enkoni.Framework
Assembly:
Enkoni.Framework (in Enkoni.Framework.dll) Version: 1.3.0.1
Syntaxpublic enum WorkflowState
Public Enumeration WorkflowState
public enum class WorkflowState
Members
| Member name | Value | Description |
---|
| Init | 0 | Indicates that the workflow is created but not yet started. |
| Starting | 1 | Indicates that the workflow is currently starting. |
| Started | 2 | Indicates that the workflow is running. |
| Pausing | 3 | Indicates that the workflow is pausing its processes. |
| Paused | 4 | Indicates that the workflow is currently paused. |
| Continuing | 5 | Indicates that the workflow is resuming its processes. |
| Continued | 6 | Indicates that the workflow is resuming. This basically is equal to the Started state. |
| Stopping | 7 | Indicates that the workflow is stopping its processes. |
| Stopped | 8 | Indicates that the workflow has stopped. |
| Faulted | 9 | Indicates that the workflow is stopped as a result of an error. |
See Also