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

Quartz Java



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

Uses of JobListener in org.quartz
 

Methods in org.quartz that return JobListener
 JobListener ListenerManager.getJobListener(String name)
          Get the JobListener that has the given name.
 

Methods in org.quartz that return types with arguments of type JobListener
 List<JobListener> ListenerManager.getJobListeners()
          Get a List containing all of the JobListeners in the Scheduler.
 

Methods in org.quartz with parameters of type JobListener
 void ListenerManager.addJobListener(JobListener jobListener, List<Matcher<JobKey>> matchers)
          Add the given JobListener to the Scheduler, and register it to receive events for Jobs that are matched by ANY of the given Matchers.
 void ListenerManager.addJobListener(JobListener jobListener, Matcher<JobKey>... matchers)
          Add the given JobListener to the Scheduler, and register it to receive events for Jobs that are matched by ANY of the given Matchers.
 

Uses of JobListener in org.quartz.core
 

Classes in org.quartz.core that implement JobListener
 class QuartzSchedulerMBeanImpl
           
 class SampledStatisticsImpl
           
 

Methods in org.quartz.core that return JobListener
 JobListener QuartzScheduler.getInternalJobListener(String name)
           Get the internal JobListener that has the given name.
 JobListener ListenerManagerImpl.getJobListener(String name)
           
 

Methods in org.quartz.core that return types with arguments of type JobListener
 List<JobListener> QuartzScheduler.getInternalJobListeners()
           Get a List containing all of the JobListeners in the Scheduler's internal list.
 List<JobListener> ListenerManagerImpl.getJobListeners()
           
 

Methods in org.quartz.core with parameters of type JobListener
 void QuartzScheduler.addInternalJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's internal list.
 void ListenerManagerImpl.addJobListener(JobListener jobListener, List<Matcher<JobKey>> matchers)
           
 void ListenerManagerImpl.addJobListener(JobListener jobListener, Matcher<JobKey>... matchers)
           
 

Uses of JobListener in org.quartz.listeners
 

Classes in org.quartz.listeners that implement JobListener
 class BroadcastJobListener
          Holds a List of references to JobListener instances and broadcasts all events to them (in order).
 class JobChainingJobListener
          Keeps a collection of mappings of which Job to trigger after the completion of a given job.
 class JobListenerSupport
          A helpful abstract base class for implementors of JobListener.
 

Methods in org.quartz.listeners that return types with arguments of type JobListener
 List<JobListener> BroadcastJobListener.getListeners()
           
 

Methods in org.quartz.listeners with parameters of type JobListener
 void BroadcastJobListener.addListener(JobListener listener)
           
 boolean BroadcastJobListener.removeListener(JobListener listener)
           
 

Constructor parameters in org.quartz.listeners with type arguments of type JobListener
BroadcastJobListener(String name, List<JobListener> listeners)
          Construct an instance with the given name, and List of listeners.
 

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.
 



Copyright 2001-2011, Terracotta, Inc.