| Package | Description |
|---|---|
| org.quartz | |
| org.quartz.core | |
| org.quartz.exceptions |
| Modifier and Type | Method and Description |
|---|---|
void |
QuartzScheduler.notifyJobStoreJobComplete(OperableTrigger trigger,
JobDetail detail,
Trigger.CompletedExecutionInstruction instCode) |
void |
QuartzScheduler.notifyJobStoreJobVetoed(OperableTrigger trigger,
JobDetail detail,
Trigger.CompletedExecutionInstruction instCode) |
| Modifier and Type | Method and Description |
|---|---|
List<OperableTrigger> |
JobStore.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.
|
Set<String> |
JobStore.getJobKeys()
Get the keys of all of the
s |
List<Trigger> |
JobStore.getTriggersForJob(String jobKey)
Get all of the Triggers that are associated to the given Job.
|
void |
JobStore.releaseAcquiredTrigger(OperableTrigger trigger)
Inform the
JobStore that the scheduler no longer plans to fire the given Trigger, that it had previously acquired
(reserved). |
boolean |
JobStore.removeJob(String jobKey)
|
boolean |
JobStore.removeTrigger(String triggerKey)
Remove (delete) the
with the given key. |
boolean |
RAMJobStore.replaceTrigger(String triggerKey,
OperableTrigger newTrigger) |
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. |
Calendar |
JobStore.retrieveCalendar(String calName)
Retrieve the given
. |
JobDetail |
JobStore.retrieveJob(String jobKey)
|
OperableTrigger |
JobStore.retrieveTrigger(String triggerKey)
Retrieve the given
. |
void |
JobStore.storeJob(JobDetail newJob,
boolean replaceExisting)
Store the given
. |
void |
RAMJobStore.storeJobAndTrigger(JobDetail newJob,
OperableTrigger newTrigger)
|
void |
JobStore.storeJobAndTrigger(JobDetail newJob,
OperableTrigger newTrigger)
|
void |
RAMJobStore.storeTrigger(OperableTrigger newTrigger,
boolean replaceExisting)
Store the given
. |
void |
JobStore.storeTrigger(OperableTrigger newTrigger,
boolean replaceExisting)
Store the given
. |
void |
JobStore.triggeredJobComplete(OperableTrigger trigger,
JobDetail jobDetail,
Trigger.CompletedExecutionInstruction triggerInstCode)
Inform the
JobStore that the scheduler has completed the firing of the given Trigger (and the execution of its
associated Job completed, threw an exception, or was vetoed), and that the in the
given JobDetail should be updated if the Job is stateful. |
List<TriggerFiredResult> |
JobStore.triggersFired(List<OperableTrigger> triggers)
Inform the
JobStore that the scheduler is now firing the given Trigger (executing its associated Job),
that it had previously acquired (reserved). |
| Modifier and Type | Class and Description |
|---|---|
class |
ObjectAlreadyExistsException
An exception that is thrown to indicate that an attempt to store a new object (i.e.
|
Copyright © 2011–2017 Knowm Inc.. All rights reserved.