Enum Trigger.CompletedExecutionInstruction

java.lang.Object
java.lang.Enum<Trigger.CompletedExecutionInstruction>
org.quartz.triggers.Trigger.CompletedExecutionInstruction
All Implemented Interfaces:
Serializable, Comparable<Trigger.CompletedExecutionInstruction>, java.lang.constant.Constable
Enclosing interface:
Trigger

public static enum Trigger.CompletedExecutionInstruction extends Enum<Trigger.CompletedExecutionInstruction>
NOOP Instructs the Scheduler that the Trigger has no further instructions.

RE_EXECUTE_JOB Instructs the Scheduler 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 Job the ability to 'see' anything placed in the context by its last execution).

SET_TRIGGER_COMPLETE Instructs the Scheduler that the Trigger should be put in the COMPLETE state.

DELETE_TRIGGER Instructs the Scheduler that the Trigger wants itself deleted.

SET_ALL_JOB_TRIGGERS_COMPLETE Instructs the Scheduler that all Triggers referencing the same JobDetail as this one should be put in the COMPLETE state.

SET_TRIGGER_ERROR Instructs the Scheduler that all Triggers referencing the same JobDetail as this one should be put in the ERROR state.

SET_ALL_JOB_TRIGGERS_ERROR Instructs the Scheduler that the Trigger should be put in the ERROR state.