The state of a process.
A process can only go through these states in a single direction. Once a process is terminated it cannot be started again.
| Type | Name | Value |
|---|---|---|
| constant | NOT_STARTED | 0 |
| constant | IN_PROGRESS | 1 |
| constant | TERMINATED | 2 |
public const ProcessState NOT_STARTED = 0public const ProcessState IN_PROGRESS = 1public const ProcessState TERMINATED = 2The process is terminated. It might have run to completion or aborted.