Uses of Interface
org.quartz.JobListener

Packages that use JobListener
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.impl Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.plugins.history   
org.quartz.xml   
 

Uses of JobListener in org.quartz
 

Methods in org.quartz that return JobListener
 JobListener Scheduler.getJobListener(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 RemotableQuartzScheduler.getJobListener(String name)
           
 JobListener QuartzScheduler.getJobListener(String name)
           Get the non-globalJobListener that has the given name.
 

Methods in org.quartz.core with parameters of type JobListener
 void RemotableQuartzScheduler.addGlobalJobListener(JobListener jobListener)
           
 void RemotableQuartzScheduler.addJobListener(JobListener jobListener)
           
 boolean RemotableQuartzScheduler.removeGlobalJobListener(JobListener 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.
 

Uses of JobListener in org.quartz.impl
 

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

Methods in org.quartz.impl with parameters of type JobListener
 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.
 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.
 

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.
 

Uses of JobListener in org.quartz.xml
 

Methods in org.quartz.xml with parameters of type JobListener
 void JobSchedulingDataProcessor.addListenerToSchedule(JobListener listener)
           
 


Quartz Enterprise Job Scheduler Project Page