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 = 0
public const ProcessState IN_PROGRESS = 1
public const ProcessState TERMINATED = 2
The process is terminated. It might have run to completion or aborted.