Uses of Interface
org.quartz.JobListener

Packages that use JobListener
org.quartz   
org.quartz.core   
org.quartz.examples   
org.quartz.impl   
org.quartz.plugins.history   
 

Uses of JobListener in org.quartz
 

Methods in org.quartz that return JobListener
 JobListener Scheduler.getJobListener(java.lang.String name)
           Get the non-globalJobListener that has the given name.
 

Methods in org.quartz with parameters of type JobListener
 void Scheduler.addGlobalJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's global list.
 void Scheduler.addJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's list, of registered JobListeners.
 boolean Scheduler.removeGlobalJobListener(JobListener jobListener)
           Remove the given JobListener from the Scheduler's list of global listeners.
 

Uses of JobListener in org.quartz.core
 

Methods in org.quartz.core that return JobListener
 JobListener QuartzScheduler.getJobListener(java.lang.String name)
           Get the non-globalJobListener that has the given name.
 JobListener RemotableQuartzScheduler.getJobListener(java.lang.String name)
           
 

Methods in org.quartz.core with parameters of type JobListener
 void QuartzScheduler.addGlobalJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler'sglobal list.
 void QuartzScheduler.addJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's list, of registered JobListeners.
 boolean QuartzScheduler.removeGlobalJobListener(JobListener jobListener)
           Remove the given JobListener from the Scheduler's list of global listeners.
 void RemotableQuartzScheduler.addGlobalJobListener(JobListener jobListener)
           
 void RemotableQuartzScheduler.addJobListener(JobListener jobListener)
           
 boolean RemotableQuartzScheduler.removeGlobalJobListener(JobListener jobListener)
           
 

Uses of JobListener in org.quartz.examples
 

Classes in org.quartz.examples that implement JobListener
 class DumbJobListener
           
 

Uses of JobListener in org.quartz.impl
 

Methods in org.quartz.impl that return JobListener
 JobListener RemoteScheduler.getJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobListener StdScheduler.getJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 

Methods in org.quartz.impl with parameters of type JobListener
 void RemoteScheduler.addGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.removeGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.addGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean StdScheduler.removeGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 

Uses of JobListener in org.quartz.plugins.history
 

Classes in org.quartz.plugins.history that implement JobListener
 class LoggingJobHistoryPlugin
          Logs a history of all job executions (and execution vetos) via the Jakarta Commons-Logging framework.
 


Quartz Project Page