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

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

public enum SchedulerInstruction
Members

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