SchedulerInstruction EnumerationQuartz.NET API Documentation
Instructs Scheduler what to do with a trigger and job.

Namespace: Quartz
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

public enum SchedulerInstruction
Members

  Member nameValueDescription
NoInstruction0 Instructs the IScheduler that the ITrigger has no further instructions.
ReExecuteJob1 Instructs the IScheduler that the ITrigger wants the IJobDetail to re-Execute immediately. If not in a 'RECOVERING' or 'FAILED_OVER' situation, the execution context will be re-used (giving the IJob the ability to 'see' anything placed in the context by its last execution).
SetTriggerComplete2 Instructs the IScheduler that the ITrigger should be put in the Complete state.
DeleteTrigger3 Instructs the IScheduler that the ITrigger wants itself deleted.
SetAllJobTriggersComplete4 Instructs the IScheduler that all ITrigger s referencing the same IJobDetail as this one should be put in the Complete state.
SetAllJobTriggersError5 Instructs the IScheduler that all ITrigger s referencing the same IJobDetail as this one should be put in the Error state.
SetTriggerError6 Instructs the IScheduler that the ITrigger should be put in the Error state.
See Also