Uses of Class
org.quartz.exceptions.JobPersistenceException
-
Uses of JobPersistenceException 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) -
Uses of JobPersistenceException in org.quartz.core
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.JobStore.getJobKeys()
Get the keys of all of the
sJob
JobStore.getTriggersForJob
(String jobKey) Get all of the Triggers that are associated to the given Job.void
JobStore.releaseAcquiredTrigger
(OperableTrigger trigger) Inform theJobStore
that the scheduler no longer plans to fire the givenTrigger
, that it had previously acquired (reserved).boolean
boolean
JobStore.removeTrigger
(String triggerKey) Remove (delete) the
with the given key.Trigger
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) JobStore.retrieveCalendar
(String calName) Retrieve the given
.Trigger
JobStore.retrieveJob
(String jobKey) JobStore.retrieveTrigger
(String triggerKey) Retrieve the given
.Trigger
void
Store the given
.JobDetail
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.JobStore.triggersFired
(List<OperableTrigger> triggers) Inform theJobStore
that the scheduler is now firing the givenTrigger
(executing its associatedJob
), that it had previously acquired (reserved). -
Uses of JobPersistenceException in org.quartz.exceptions
Modifier and TypeClassDescriptionclass
An exception that is thrown to indicate that an attempt to store a new object (i.e.