Uses of Interface
org.quartz.spi.SchedulerPlugin

Packages that use SchedulerPlugin
org.quartz.core   
org.quartz.plugins.history   
org.quartz.plugins.management   
org.quartz.plugins.xml   
 

Uses of SchedulerPlugin in org.quartz.core
 

Methods in org.quartz.core with parameters of type SchedulerPlugin
 void QuartzScheduler.addSchedulerPlugin(SchedulerPlugin plugin)
           Add the given SchedulerPlugin to the Scheduler.
 

Uses of SchedulerPlugin in org.quartz.plugins.history
 

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

Uses of SchedulerPlugin in org.quartz.plugins.management
 

Classes in org.quartz.plugins.management that implement SchedulerPlugin
 class ShutdownHookPlugin
          This plugin catches the event of the JVM terminating (such as upon a CRTL-C) and tells the scheuler to shutdown.
 

Uses of SchedulerPlugin in org.quartz.plugins.xml
 

Classes in org.quartz.plugins.xml that implement SchedulerPlugin
 class JobInitializationPlugin
          This plugin loads an XML file to add jobs and schedule them with triggers as the scheduler is initialized, and can optionally periodically scan the file for changes.
 


Quartz Project Page