Uses of Interface
org.quartz.core.JobExecutionContext
Packages that use JobExecutionContext
Package
Description
-
Uses of JobExecutionContext in org.knowm.sundial
Methods in org.knowm.sundial with parameters of type JobExecutionContextModifier 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
Methods in org.quartz that return types with arguments of type JobExecutionContextModifier and TypeMethodDescriptionQuartzScheduler.getCurrentlyExecutingJobs()
Return a list ofJobExecutionContext
objects that represent all currently executing Jobs in this Scheduler instance.Methods in org.quartz with parameters of type JobExecutionContextModifier 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
Classes in org.quartz.core that implement JobExecutionContextMethods in org.quartz.core that return types with arguments of type JobExecutionContextModifier 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
Methods in org.quartz.jobs with parameters of type JobExecutionContextModifier and TypeMethodDescriptionvoid
Job.execute
(JobExecutionContext context) void
NoOpJob.execute
(JobExecutionContext context) Do nothing. -
Uses of JobExecutionContext in org.quartz.listeners
Methods in org.quartz.listeners with parameters of type JobExecutionContextModifier 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
Methods in org.quartz.triggers with parameters of type JobExecutionContextModifier and TypeMethodDescriptionAbstractTrigger.executionComplete
(JobExecutionContext context, JobExecutionException result) OperableTrigger.executionComplete
(JobExecutionContext context, JobExecutionException result) This method should not be used by the Quartz client.