Uses of Interface
org.quartz.triggers.OperableTrigger
Package
Description
-
Uses of OperableTrigger in org.knowm.sundial.plugins
Modifier and TypeMethodDescriptionAnnotationJobTriggerPlugin.buildCronTrigger
(CronTrigger cronTrigger, String jobName) AnnotationJobTriggerPlugin.buildSimpleTrigger
(SimpleTrigger simpleTrigger, String jobName) -
Uses of OperableTrigger in org.quartz
Modifier and TypeMethodDescriptionvoid
QuartzScheduler.notifyJobStoreJobComplete
(OperableTrigger trigger, JobDetail detail, Trigger.CompletedExecutionInstruction instCode) void
QuartzScheduler.notifyJobStoreJobVetoed
(OperableTrigger trigger, JobDetail detail, Trigger.CompletedExecutionInstruction instCode) QuartzScheduler.rescheduleJob
(String triggerName, OperableTrigger newTrigger) QuartzScheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) QuartzScheduler.scheduleJob
(OperableTrigger trigger) -
Uses of OperableTrigger in org.quartz.builders
Modifier and TypeMethodDescriptionTriggerBuilder.build()
Produce theOperableTrigger
.CronTriggerBuilder.instantiate()
Build the actual Trigger -- NOT intended to be invoked by end users, but will rather be invoked by a TriggerBuilder which this ScheduleBuilder is given to.SimpleTriggerBuilder.instantiate()
Build the actual Trigger -- NOT intended to be invoked by end users, but will rather be invoked by a TriggerBuilder which this ScheduleBuilder is given to.abstract OperableTrigger
TriggerBuilder.instantiate()
Modifier and TypeMethodDescriptionTriggerBuilder.withTriggerImplementation
(OperableTrigger operableTrigger) Set theinvalid @link
ScheduleBuilder
-
Uses of OperableTrigger in org.quartz.core
Modifier and TypeMethodDescriptionTriggerFiredBundle.getTrigger()
JobStore.retrieveTrigger
(String triggerKey) Retrieve the given
.Trigger
RAMJobStore.retrieveTrigger
(String triggerKey) Retrieve the given
.Trigger
Modifier and TypeMethodDescriptionJobStore.acquireNextTriggers
(long noLaterThan, int maxCount, long timeWindow) Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler.RAMJobStore.acquireNextTriggers
(long noLaterThan, int maxCount, long timeWindow) Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler.Modifier and TypeMethodDescriptionvoid
JobStore.releaseAcquiredTrigger
(OperableTrigger trigger) Inform theJobStore
that the scheduler no longer plans to fire the givenTrigger
, that it had previously acquired (reserved).void
RAMJobStore.releaseAcquiredTrigger
(OperableTrigger trigger) Inform theJobStore
that the scheduler no longer plans to fire the givenTrigger
, that it had previously acquired (reserved).boolean
JobStore.replaceTrigger
(String triggerKey, OperableTrigger newTrigger) Remove (delete) the
with the given key, and store the new given one - which must be associated with the same job.Trigger
boolean
RAMJobStore.replaceTrigger
(String triggerKey, OperableTrigger newTrigger) Scheduler.rescheduleJob
(String triggerName, OperableTrigger newTrigger) Remove (delete) the
with the given key, and store the new given one - which must be associated with the same job (the new trigger must have the job name specified) - however, the new trigger need not have the same name as the old trigger.OperableTrigger
Scheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) Add the given
to the Scheduler, and associate the givenJobDetail
with it.OperableTrigger
Scheduler.scheduleJob
(OperableTrigger trigger) void
JobStore.storeJobAndTrigger
(JobDetail newJob, OperableTrigger newTrigger) void
RAMJobStore.storeJobAndTrigger
(JobDetail newJob, OperableTrigger newTrigger) void
JobStore.storeTrigger
(OperableTrigger newTrigger, boolean replaceExisting) Store the given
.Trigger
void
RAMJobStore.storeTrigger
(OperableTrigger newTrigger, boolean replaceExisting) Store the given
.Trigger
void
JobStore.triggeredJobComplete
(OperableTrigger trigger, JobDetail jobDetail, Trigger.CompletedExecutionInstruction triggerInstCode) Inform theJobStore
that the scheduler has completed the firing of the givenTrigger
(and the execution of its associatedJob
completed, threw an exception, or was vetoed), and that the
in the givenJobDataMap
JobDetail
should be updated if theJob
is stateful.void
RAMJobStore.triggeredJobComplete
(OperableTrigger trigger, JobDetail jobDetail, Trigger.CompletedExecutionInstruction triggerInstCode) Inform theJobStore
that the scheduler has completed the firing of the givenTrigger
(and the execution its associatedJob
), and that theJobDataMap
JobDetail
should be updated if theJob
is stateful.Modifier and TypeMethodDescriptionJobStore.triggersFired
(List<OperableTrigger> triggers) Inform theJobStore
that the scheduler is now firing the givenTrigger
(executing its associatedJob
), that it had previously acquired (reserved).RAMJobStore.triggersFired
(List<OperableTrigger> triggers) Inform theJobStore
that the scheduler is now firing the givenTrigger
(executing its associatedJob
), that it had previously acquired (reserved).ModifierConstructorDescriptionTriggerFiredBundle
(JobDetail job, OperableTrigger trigger, Calendar cal, boolean jobIsRecovering, Date fireTime, Date scheduledFireTime, Date prevFireTime, Date nextFireTime) -
Uses of OperableTrigger in org.quartz.triggers
Modifier and TypeClassDescriptionclass
The base abstract class to be extended by allTrigger
s.class
class