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

Uses of JobListener in org.quartz
 

Methods in org.quartz that return JobListener
 JobListener Scheduler.getGlobalJobListener(java.lang.String name)
           Get the globalJobListener that has the given name.
 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.
 

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 RemotableQuartzScheduler.getGlobalJobListener(java.lang.String name)
           
 JobListener QuartzScheduler.getGlobalJobListener(java.lang.String name)
           Get the globalJobListener that has the given name.
 JobListener RemotableQuartzScheduler.getJobListener(java.lang.String name)
           
 JobListener QuartzScheduler.getJobListener(java.lang.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 QuartzScheduler.addGlobalJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler'sglobal list.
 void RemotableQuartzScheduler.addJobListener(JobListener jobListener)
           
 void QuartzScheduler.addJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's list, of registered JobListeners.
 

Uses of JobListener in org.quartz.impl
 

Methods in org.quartz.impl that return JobListener
 JobListener StdScheduler.getGlobalJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobListener RemoteScheduler.getGlobalJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobListener RemoteMBeanScheduler.getGlobalJobListener(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.
 JobListener RemoteScheduler.getJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobListener RemoteMBeanScheduler.getJobListener(java.lang.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 RemoteScheduler.addGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 

Uses of JobListener in org.quartz.listeners
 

Classes in org.quartz.listeners that implement JobListener
 class FilterAndBroadcastJobListener
          Holds a List of references to JobListener instances and broadcasts all events to them (in order) - if the event is not excluded via filtering (read on).
 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 with parameters of type JobListener
 void FilterAndBroadcastJobListener.addListener(JobListener listener)
           
 boolean FilterAndBroadcastJobListener.removeListener(JobListener listener)
           
 

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-2019, Terracotta, Inc.