Table of Contents

Enum JobState

Namespace
Misaki.HighPerformance.Jobs
Assembly
Misaki.HighPerformance.Jobs.dll

The state of a job in its lifecycle.

public enum JobState

Fields

Completed = 3

The job has completed execution.

Created = 0

The job has been created but not yet scheduled for execution.

Invalid = -1

The job is in an invalid state, indicating an error or uninitialized state.

Running = 2

The job is currently being executed.

Scheduled = 1

The job is scheduled and waiting to be executed.