JobScheduleState Enum

Definition

The state of a job schedule.

public enum JobScheduleState
type JobScheduleState = 
Public Enum JobScheduleState
Inheritance
JobScheduleState

Fields

Active 0

The job schedule is active and will create jobs as per its schedule.

Completed 1

The schedule has terminated, either by reaching its end time or by the user terminating it explicitly.

Deleting 4

The user has requested that the schedule be deleted, but the delete operation is still in progress. The scheduler will not initiate any new jobs for this schedule, but any existing active job will continue to run. The schedule will be deleted when the existing job completes.

Disabled 2

The user has disabled the schedule. The scheduler will not initiate any new jobs will on this schedule, but any existing active job will continue to run.

Terminating 3

The schedule has no more work to do, or has been explicitly terminated by the user, but the termination operation is still in progress. The scheduler will not initiate any new jobs for this schedule, nor is any existing job active.

Applies to