Uses of Interface
org.quartz.triggers.OperableTrigger
Packages that use OperableTrigger
Package
Description
-
Uses of OperableTrigger in org.knowm.sundial.plugins
Methods in org.knowm.sundial.plugins that return OperableTriggerModifier and TypeMethodDescriptionAnnotationJobTriggerPlugin.buildCronTrigger
(CronTrigger cronTrigger, String jobName) AnnotationJobTriggerPlugin.buildSimpleTrigger
(SimpleTrigger simpleTrigger, String jobName) -
Uses of OperableTrigger in org.quartz
Methods in org.quartz with parameters of type OperableTriggerModifier 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
Methods in org.quartz.builders that return OperableTriggerModifier 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()
Methods in org.quartz.builders with parameters of type OperableTriggerModifier and TypeMethodDescriptionTriggerBuilder.withTriggerImplementation
(OperableTrigger operableTrigger) Set theinvalid @link
ScheduleBuilder
-
Uses of OperableTrigger in org.quartz.core
Methods in org.quartz.core that return OperableTriggerModifier and TypeMethodDescriptionTriggerFiredBundle.getTrigger()
JobStore.retrieveTrigger
(String triggerKey) Retrieve the given
.Trigger
RAMJobStore.retrieveTrigger
(String triggerKey) Retrieve the given
.Trigger
Methods in org.quartz.core that return types with arguments of type OperableTriggerModifier 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.Methods in org.quartz.core with parameters of type OperableTriggerModifier 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.Method parameters in org.quartz.core with type arguments of type OperableTriggerModifier 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).Constructors in org.quartz.core with parameters of type OperableTriggerModifierConstructorDescriptionTriggerFiredBundle
(JobDetail job, OperableTrigger trigger, Calendar cal, boolean jobIsRecovering, Date fireTime, Date scheduledFireTime, Date prevFireTime, Date nextFireTime) -
Uses of OperableTrigger in org.quartz.triggers
Classes in org.quartz.triggers that implement OperableTriggerModifier and TypeClassDescriptionclass
The base abstract class to be extended by allTrigger
s.class
class