|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JobExecutionContext | |
---|---|
org.quartz | The main package of Quartz, containing the client-side interfaces. |
org.quartz.core | Contains the core classes and interfaces for the Quartz job scheduler. |
org.quartz.core.jmx | |
org.quartz.impl | Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. |
org.quartz.impl.triggers | This package contains Trigger implementations that ship with Quartz. |
org.quartz.jobs | |
org.quartz.jobs.ee.ejb | |
org.quartz.jobs.ee.jms | |
org.quartz.jobs.ee.jmx | |
org.quartz.jobs.ee.mail | |
org.quartz.listeners | |
org.quartz.plugins.history | |
org.quartz.spi | Contains Service Provider Interfaces that can be implemented by those wishing to create and use custom versions of Quartz back-end/behind-the-scenes services. |
org.terracotta.quartz |
Uses of JobExecutionContext in org.quartz |
---|
Methods in org.quartz that return types with arguments of type JobExecutionContext | |
---|---|
List<JobExecutionContext> |
Scheduler.getCurrentlyExecutingJobs()
Return a list of JobExecutionContext objects that
represent all currently executing Jobs in this Scheduler instance. |
Methods in org.quartz with parameters of type JobExecutionContext | |
---|---|
void |
Job.execute(JobExecutionContext context)
Called by the when a
fires that is associated with the Job . |
void |
JobListener.jobExecutionVetoed(JobExecutionContext context)
Called by the when a
was about to be executed (an associated
has occurred), but a vetoed it's
execution. |
void |
JobListener.jobToBeExecuted(JobExecutionContext context)
Called by the when a
is about to be executed (an associated
has occurred). |
void |
JobListener.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
Called by the after a
has been executed, and be for the associated Trigger 's
triggered(xx) method has been called. |
void |
TriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode)
Called by the when a
has fired, it's associated
has been executed, and it's triggered(xx) method has been
called. |
void |
TriggerListener.triggerFired(Trigger trigger,
JobExecutionContext context)
Called by the when a
has fired, and it's associated
is about to be executed. |
boolean |
TriggerListener.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
Called by the when a
has fired, and it's associated
is about to be executed. |
Uses of JobExecutionContext in org.quartz.core |
---|
Methods in org.quartz.core that return types with arguments of type JobExecutionContext | |
---|---|
List<JobExecutionContext> |
RemotableQuartzScheduler.getCurrentlyExecutingJobs()
|
List<JobExecutionContext> |
QuartzScheduler.getCurrentlyExecutingJobs()
Return a list of JobExecutionContext objects that
represent all currently executing Jobs in this Scheduler instance. |
Uses of JobExecutionContext in org.quartz.core.jmx |
---|
Methods in org.quartz.core.jmx with parameters of type JobExecutionContext | |
---|---|
static CompositeData |
JobExecutionContextSupport.toCompositeData(JobExecutionContext jec)
|
Method parameters in org.quartz.core.jmx with type arguments of type JobExecutionContext | |
---|---|
static TabularData |
JobExecutionContextSupport.toTabularData(List<JobExecutionContext> executingJobs)
|
Uses of JobExecutionContext in org.quartz.impl |
---|
Classes in org.quartz.impl that implement JobExecutionContext | |
---|---|
class |
JobExecutionContextImpl
|
Methods in org.quartz.impl that return types with arguments of type JobExecutionContext | |
---|---|
List<JobExecutionContext> |
StdScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied' QuartzScheduler . |
List<JobExecutionContext> |
RemoteScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied' QuartzScheduler . |
List<JobExecutionContext> |
RemoteMBeanScheduler.getCurrentlyExecutingJobs()
Calls the equivalent method on the 'proxied' QuartzScheduler . |
Uses of JobExecutionContext in org.quartz.impl.triggers |
---|
Methods in org.quartz.impl.triggers with parameters of type JobExecutionContext | |
---|---|
Trigger.CompletedExecutionInstruction |
AbstractTrigger.executionComplete(JobExecutionContext context,
JobExecutionException result)
This method should not be used by the Quartz client. |
Uses of JobExecutionContext in org.quartz.jobs |
---|
Methods in org.quartz.jobs with parameters of type JobExecutionContext | |
---|---|
void |
NoOpJob.execute(JobExecutionContext context)
Do nothing. |
void |
NativeJob.execute(JobExecutionContext context)
|
void |
FileScanJob.execute(JobExecutionContext context)
|
void |
DirectoryScanJob.execute(JobExecutionContext context)
|
Uses of JobExecutionContext in org.quartz.jobs.ee.ejb |
---|
Methods in org.quartz.jobs.ee.ejb with parameters of type JobExecutionContext | |
---|---|
void |
EJBInvokerJob.execute(JobExecutionContext context)
|
void |
EJB3InvokerJob.execute(JobExecutionContext context)
|
Uses of JobExecutionContext in org.quartz.jobs.ee.jms |
---|
Methods in org.quartz.jobs.ee.jms with parameters of type JobExecutionContext | |
---|---|
void |
SendTopicMessageJob.execute(JobExecutionContext jobCtx)
|
void |
SendQueueMessageJob.execute(JobExecutionContext jobCtx)
|
void |
SendDestinationMessageJob.execute(JobExecutionContext jobCtx)
|
Uses of JobExecutionContext in org.quartz.jobs.ee.jmx |
---|
Methods in org.quartz.jobs.ee.jmx with parameters of type JobExecutionContext | |
---|---|
void |
JMXInvokerJob.execute(JobExecutionContext context)
|
Uses of JobExecutionContext in org.quartz.jobs.ee.mail |
---|
Methods in org.quartz.jobs.ee.mail with parameters of type JobExecutionContext | |
---|---|
void |
SendMailJob.execute(JobExecutionContext context)
|
Uses of JobExecutionContext in org.quartz.listeners |
---|
Methods in org.quartz.listeners with parameters of type JobExecutionContext | |
---|---|
void |
JobListenerSupport.jobExecutionVetoed(JobExecutionContext context)
|
void |
BroadcastJobListener.jobExecutionVetoed(JobExecutionContext context)
|
void |
JobListenerSupport.jobToBeExecuted(JobExecutionContext context)
|
void |
BroadcastJobListener.jobToBeExecuted(JobExecutionContext context)
|
void |
JobListenerSupport.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
|
void |
JobChainingJobListener.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
|
void |
BroadcastJobListener.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
|
void |
TriggerListenerSupport.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode)
|
void |
BroadcastTriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode)
|
void |
TriggerListenerSupport.triggerFired(Trigger trigger,
JobExecutionContext context)
|
void |
BroadcastTriggerListener.triggerFired(Trigger trigger,
JobExecutionContext context)
|
boolean |
TriggerListenerSupport.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
|
boolean |
BroadcastTriggerListener.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
|
Uses of JobExecutionContext in org.quartz.plugins.history |
---|
Methods in org.quartz.plugins.history with parameters of type JobExecutionContext | |
---|---|
void |
LoggingJobHistoryPlugin.jobExecutionVetoed(JobExecutionContext context)
|
void |
LoggingJobHistoryPlugin.jobToBeExecuted(JobExecutionContext context)
|
void |
LoggingJobHistoryPlugin.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
|
void |
LoggingTriggerHistoryPlugin.triggerComplete(Trigger trigger,
JobExecutionContext context,
Trigger.CompletedExecutionInstruction triggerInstructionCode)
|
void |
LoggingTriggerHistoryPlugin.triggerFired(Trigger trigger,
JobExecutionContext context)
|
boolean |
LoggingTriggerHistoryPlugin.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
|
Uses of JobExecutionContext in org.quartz.spi |
---|
Methods in org.quartz.spi with parameters of type JobExecutionContext | |
---|---|
Trigger.CompletedExecutionInstruction |
OperableTrigger.executionComplete(JobExecutionContext context,
JobExecutionException result)
This method should not be used by the Quartz client. |
Uses of JobExecutionContext in org.terracotta.quartz |
---|
Methods in org.terracotta.quartz with parameters of type JobExecutionContext | |
---|---|
void |
PlainTerracottaJobStore.jobExecutionVetoed(JobExecutionContext context)
|
void |
PlainTerracottaJobStore.jobToBeExecuted(JobExecutionContext context)
|
void |
PlainTerracottaJobStore.jobWasExecuted(JobExecutionContext context,
JobExecutionException jobException)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |