Uses of Interface
org.quartz.jobs.JobDetail
Package
Description
-
Uses of JobDetail in org.quartz
Modifier and TypeMethodDescriptionQuartzScheduler.getJobDetail
(String jobKey) Get the
for theJobDetail
Job
instance with the given name and group.Modifier and TypeMethodDescriptionvoid
Add the givenJob
to the Scheduler - with no associatedTrigger
.void
QuartzScheduler.notifyJobStoreJobComplete
(OperableTrigger trigger, JobDetail detail, Trigger.CompletedExecutionInstruction instCode) void
QuartzScheduler.notifyJobStoreJobVetoed
(OperableTrigger trigger, JobDetail detail, Trigger.CompletedExecutionInstruction instCode) QuartzScheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) -
Uses of JobDetail in org.quartz.builders
-
Uses of JobDetail in org.quartz.core
Modifier and TypeMethodDescriptionJobExecutionContext.getJobDetail()
Get theJobDetail
associated with theJob
.JobExecutionContextImpl.getJobDetail()
Scheduler.getJobDetail
(String jobKey) Get the
for theJobDetail
Job
instance with the given key.TriggerFiredBundle.getJobDetail()
JobStore.retrieveJob
(String jobKey) RAMJobStore.retrieveJob
(String jobKey) Modifier and TypeMethodDescriptionvoid
Add the givenJob
to the Scheduler - with no associatedTrigger
.Scheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) Add the given
to the Scheduler, and associate the givenJobDetail
with it.OperableTrigger
void
Store the given
.JobDetail
void
Store the given
.Job
void
JobStore.storeJobAndTrigger
(JobDetail newJob, OperableTrigger newTrigger) void
RAMJobStore.storeJobAndTrigger
(JobDetail newJob, OperableTrigger newTrigger) 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.ModifierConstructorDescriptionTriggerFiredBundle
(JobDetail job, OperableTrigger trigger, Calendar cal, boolean jobIsRecovering, Date fireTime, Date scheduledFireTime, Date prevFireTime, Date nextFireTime) -
Uses of JobDetail in org.quartz.exceptions
ModifierConstructorDescriptionObjectAlreadyExistsException
(JobDetail offendingJob) Create aObjectAlreadyExistsException
and auto-generate a message using the name/group from the givenJobDetail
. -
Uses of JobDetail in org.quartz.jobs
Modifier and TypeClassDescriptionclass
Conveys the detail properties of a givenJob
instance. -
Uses of JobDetail in org.quartz.listeners