Uses of Interface org.quartz.JobExecutionContext (Quartz Parent POM 2.0.1 API)

Quartz Java



Uses of Interface
org.quartz.JobExecutionContext

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.locality   
org.quartz.plugins.history   
 

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 Scheduler when a Trigger fires that is associated with the Job.
 void JobListener.jobExecutionVetoed(JobExecutionContext context)
           Called by the Scheduler when a JobDetail was about to be executed (an associated Trigger has occurred), but a TriggerListener vetoed it's execution.
 void JobListener.jobToBeExecuted(JobExecutionContext context)
           Called by the Scheduler when a JobDetail is about to be executed (an associated Trigger has occurred).
 void JobListener.jobWasExecuted(JobExecutionContext context, JobExecutionException jobException)
           Called by the Scheduler after a JobDetail 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 Scheduler when a Trigger has fired, it's associated JobDetail has been executed, and it's triggered(xx) method has been called.
 void TriggerListener.triggerFired(Trigger trigger, JobExecutionContext context)
           Called by the Scheduler when a Trigger has fired, and it's associated JobDetail is about to be executed.
 boolean TriggerListener.vetoJobExecution(Trigger trigger, JobExecutionContext context)
           Called by the Scheduler when a Trigger has fired, and it's associated JobDetail 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> QuartzScheduler.getCurrentlyExecutingJobs()
           Return a list of JobExecutionContext objects that represent all currently executing Jobs in this Scheduler instance.
 List<JobExecutionContext> RemotableQuartzScheduler.getCurrentlyExecutingJobs()
           
 

Methods in org.quartz.core with parameters of type JobExecutionContext
 void QuartzSchedulerMBeanImpl.jobExecutionVetoed(JobExecutionContext context)
           
 void SampledStatisticsImpl.jobExecutionVetoed(JobExecutionContext context)
           
 void QuartzSchedulerMBeanImpl.jobToBeExecuted(JobExecutionContext context)
           
 void SampledStatisticsImpl.jobToBeExecuted(JobExecutionContext context)
           
 void QuartzSchedulerMBeanImpl.jobWasExecuted(JobExecutionContext context, JobExecutionException jobException)
           
 void SampledStatisticsImpl.jobWasExecuted(JobExecutionContext context, JobExecutionException jobException)
           
 void 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.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> 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 DirectoryScanJob.execute(JobExecutionContext context)
           
 void NativeJob.execute(JobExecutionContext context)
           
 void FileScanJob.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)
           
 

Uses of JobExecutionContext in org.quartz.jobs.ee.jms
 

Methods in org.quartz.jobs.ee.jms with parameters of type JobExecutionContext
 void SendQueueMessageJob.execute(JobExecutionContext context)
           
 void SendDestinationMessageJob.execute(JobExecutionContext jobCtx)
           
 void SendTopicMessageJob.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 JobChainingJobListener.jobWasExecuted(JobExecutionContext context, JobExecutionException jobException)
           
 void JobListenerSupport.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.locality
 

Methods in org.quartz.locality with parameters of type JobExecutionContext
 Trigger.CompletedExecutionInstruction DelegatingLocalityTrigger.executionComplete(JobExecutionContext context, JobExecutionException result)
          
 

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)
           
 



Copyright 2001-2011, Terracotta, Inc.