Uses of Interface
org.quartz.core.JobExecutionContext
Package
Description
-
Uses of JobExecutionContext in org.knowm.sundial
Modifier and TypeMethodDescriptionvoid
JobContext.addQuartzContext
(JobExecutionContext jobExecutionContext) Add all the mappings from the JobExecutionContext to the JobContextfinal void
Job.execute
(JobExecutionContext jobExecutionContext) protected void
JobContainer.initContextContainer
(JobExecutionContext jobExecutionContext) Initialize the ThreadLocal with a JobExecutionContext object -
Uses of JobExecutionContext in org.quartz
Modifier and TypeMethodDescriptionQuartzScheduler.getCurrentlyExecutingJobs()
Return a list ofJobExecutionContext
objects that represent all currently executing Jobs in this Scheduler instance.Modifier and TypeMethodDescriptionvoid
QuartzScheduler.notifyJobListenersToBeExecuted
(JobExecutionContext jec) void
QuartzScheduler.notifyJobListenersWasExecuted
(JobExecutionContext jec, JobExecutionException je) void
QuartzScheduler.notifyJobListenersWasVetoed
(JobExecutionContext jec) void
QuartzScheduler.notifyTriggerListenersComplete
(JobExecutionContext jec, Trigger.CompletedExecutionInstruction instCode) boolean
QuartzScheduler.notifyTriggerListenersFired
(JobExecutionContext jec) -
Uses of JobExecutionContext in org.quartz.core
Modifier and TypeMethodDescriptionScheduler.getCurrentlyExecutingJobs()
Return a list ofJobExecutionContext
objects that represent all currently executing Jobs in this Scheduler instance. -
Uses of JobExecutionContext in org.quartz.jobs
Modifier and TypeMethodDescriptionvoid
Job.execute
(JobExecutionContext context) void
NoOpJob.execute
(JobExecutionContext context) Do nothing. -
Uses of JobExecutionContext in org.quartz.listeners
Modifier and TypeMethodDescriptionvoid
JobListener.jobExecutionVetoed
(JobExecutionContext context) Called by the
when aScheduler
was about to be executed (an associatedJobDetail
has occurred), but aTrigger
vetoed it's execution.TriggerListener
void
JobListener.jobToBeExecuted
(JobExecutionContext context) void
JobListener.jobWasExecuted
(JobExecutionContext context, JobExecutionException jobException) void
TriggerListener.triggerComplete
(Trigger trigger, JobExecutionContext context, Trigger.CompletedExecutionInstruction triggerInstructionCode) void
TriggerListener.triggerFired
(Trigger trigger, JobExecutionContext context) boolean
TriggerListener.vetoJobExecution
(Trigger trigger, JobExecutionContext context) -
Uses of JobExecutionContext in org.quartz.triggers
Modifier and TypeMethodDescriptionAbstractTrigger.executionComplete
(JobExecutionContext context, JobExecutionException result) OperableTrigger.executionComplete
(JobExecutionContext context, JobExecutionException result) This method should not be used by the Quartz client.