ProcessState ENUM

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.

All Members


TypeNameValue
constantNOT_STARTED0
constantIN_PROGRESS1
constantTERMINATED2

Constants


public const ProcessState NOT_STARTED = 0

The process is not started.

public const ProcessState IN_PROGRESS = 1

The process is in progress.

public const ProcessState TERMINATED = 2

The process is terminated. It might have run to completion or aborted.