State

enum State : Enum<State>

Process and Thread Execution States

Constructors

Link copied to clipboard
private constructor()

Entries

Link copied to clipboard

Intermediate state in process creation

Link copied to clipboard

Actively executing process

Link copied to clipboard

Interruptible sleep state

Link copied to clipboard

Blocked, uninterruptible sleep state

Link copied to clipboard

Intermediate state in process termination

Link copied to clipboard

Stopped by the user, such as for debugging

Link copied to clipboard

Other or unknown states not defined

Link copied to clipboard

The state resulting if the process fails to update statistics, probably due to termination.

Link copied to clipboard

Special case of waiting if the process has been intentionally suspended (Windows only)

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun valueOf(value: String): State

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.