Uses of Class
org.quartz.JobExecutionContext

Packages that use JobExecutionContext
org.quartz   
org.quartz.core   
org.quartz.ee.ejb   
org.quartz.examples   
org.quartz.helpers   
org.quartz.jobs   
org.quartz.jobs.ee.ejb   
org.quartz.jobs.ee.jmx   
org.quartz.jobs.ee.mail   
org.quartz.plugins.history   
 

Uses of JobExecutionContext in org.quartz
 

Methods in org.quartz with parameters of type JobExecutionContext
 void JobListener.jobToBeExecuted(JobExecutionContext context)
           Called by the Scheduler when a JobDetail is about to be executed (an associated Trigger has occured).
 void JobListener.jobExecutionVetoed(JobExecutionContext context)
           Called by the Scheduler when a JobDetail was about to be executed (an associated Trigger has occured), but a TriggerListener vetoed it's execution.
 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 Job.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 int UICronTrigger.executionComplete(JobExecutionContext context, JobExecutionException result)
           Called after the Scheduler has executed the Job associated with the Trigger in order to get the final instruction code from the trigger.
abstract  int Trigger.executionComplete(JobExecutionContext context, JobExecutionException result)
           This method should not be used by the Quartz client.
 int SimpleTrigger.executionComplete(JobExecutionContext context, JobExecutionException result)
           Called after the Scheduler has executed the JobDetail associated with the Trigger in order to get the final instruction code from the trigger.
 int CronTrigger.executionComplete(JobExecutionContext context, JobExecutionException result)
           Called after the Scheduler has executed the JobDetail associated with the Trigger in order to get the final instruction code from the trigger.
 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.
 void TriggerListener.triggerComplete(Trigger trigger, JobExecutionContext context, int 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.
 

Uses of JobExecutionContext in org.quartz.core
 

Fields in org.quartz.core declared as JobExecutionContext
protected  JobExecutionContext JobRunShell.jec
           
 

Methods in org.quartz.core with parameters of type JobExecutionContext
 boolean QuartzScheduler.notifyTriggerListenersFired(JobExecutionContext jec)
           
 void QuartzScheduler.notifyTriggerListenersComplete(JobExecutionContext jec, int instCode)
           
 void QuartzScheduler.notifyJobListenersToBeExecuted(JobExecutionContext jec)
           
 void QuartzScheduler.notifyJobListenersWasVetoed(JobExecutionContext jec)
           
 void QuartzScheduler.notifyJobListenersWasExecuted(JobExecutionContext jec, JobExecutionException je)
           
 

Uses of JobExecutionContext in org.quartz.ee.ejb
 

Methods in org.quartz.ee.ejb with parameters of type JobExecutionContext
 void EJBInvokerJob.execute(JobExecutionContext context)
          Deprecated.  
 

Uses of JobExecutionContext in org.quartz.examples
 

Methods in org.quartz.examples with parameters of type JobExecutionContext
 void DumbInterruptableJob.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 void DumbTriggerListener.triggerFired(Trigger trigger, JobExecutionContext context)
           
 boolean DumbTriggerListener.vetoJobExecution(Trigger trigger, JobExecutionContext context)
           
 void DumbTriggerListener.triggerComplete(Trigger trigger, JobExecutionContext context, int triggerInstructionCode)
           
 void DumbJobListener.jobToBeExecuted(JobExecutionContext context)
           
 void DumbJobListener.jobExecutionVetoed(JobExecutionContext context)
           
 void DumbJobListener.jobWasExecuted(JobExecutionContext context, JobExecutionException jobException)
           
 void DumbDelayJob.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 void StatefulDumbJob.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 void DumbJob2.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 void DumbRecoveryJob.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 void DumbJob.execute(JobExecutionContext context)
           Called by the Scheduler when a Trigger fires that is associated with the Job.
 

Uses of JobExecutionContext in org.quartz.helpers
 

Methods in org.quartz.helpers with parameters of type JobExecutionContext
 void NoOpJob.execute(JobExecutionContext context)
          Deprecated.  Do nothing.
 

Uses of JobExecutionContext in org.quartz.jobs
 

Methods in org.quartz.jobs with parameters of type JobExecutionContext
 void NativeJob.execute(JobExecutionContext context)
           
 void FileScanJob.execute(JobExecutionContext context)
           
 void NoOpJob.execute(JobExecutionContext context)
           Do nothing.
 

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.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.plugins.history
 

Methods in org.quartz.plugins.history with parameters of type JobExecutionContext
 void LoggingTriggerHistoryPlugin.triggerFired(Trigger trigger, JobExecutionContext context)
           
 void LoggingTriggerHistoryPlugin.triggerComplete(Trigger trigger, JobExecutionContext context, int triggerInstructionCode)
           
 boolean LoggingTriggerHistoryPlugin.vetoJobExecution(Trigger trigger, JobExecutionContext context)
           
 void LoggingJobHistoryPlugin.jobToBeExecuted(JobExecutionContext context)
           
 void LoggingJobHistoryPlugin.jobWasExecuted(JobExecutionContext context, JobExecutionException jobException)
           
 void LoggingJobHistoryPlugin.jobExecutionVetoed(JobExecutionContext context)
           
 


Quartz Project Page