Uses of Interface
org.quartz.Scheduler

Packages that use Scheduler
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.ee.jmx.jboss   
org.quartz.ee.jta   
org.quartz.impl Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.plugins   
org.quartz.plugins.history   
org.quartz.plugins.management   
org.quartz.plugins.xml   
org.quartz.simpl Contains simple / light-weight implementations (with no dependencies on external libraries) of interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.xml   
 

Uses of Scheduler in org.quartz
 

Methods in org.quartz that return Scheduler
 Scheduler JobExecutionContext.getScheduler()
           Get a handle to the Scheduler instance that fired the Job.
 Scheduler SchedulerFactory.getScheduler()
           Returns a client-usable handle to a Scheduler.
 Scheduler SchedulerFactory.getScheduler(String schedName)
           Returns a handle to the Scheduler with the given name, if it exists.
 

Methods in org.quartz that return types with arguments of type Scheduler
 Collection<Scheduler> SchedulerFactory.getAllSchedulers()
           Returns handles to all known Schedulers (made by any SchedulerFactory within this jvm.).
 

Uses of Scheduler in org.quartz.core
 

Fields in org.quartz.core declared as Scheduler
protected  Scheduler JobRunShell.scheduler
           
 

Methods in org.quartz.core with parameters of type Scheduler
 void JobRunShellFactory.initialize(Scheduler scheduler)
           Initialize the factory, providing a handle to the Scheduler that should be made available within the JobRunShell and the JobExecutionContext s within it.
 

Constructors in org.quartz.core with parameters of type Scheduler
JobRunShell(Scheduler scheduler, org.quartz.spi.TriggerFiredBundle bndle)
           Create a JobRunShell instance with the given settings.
 

Uses of Scheduler in org.quartz.ee.jmx.jboss
 

Classes in org.quartz.ee.jmx.jboss that implement Scheduler
 class JBoss4RMIRemoteMBeanScheduler
           An implementation of the Scheduler interface that remotely proxies all method calls to the equivalent call on a given QuartzScheduler instance, via JBoss's JMX RMIAdaptor.
 

Uses of Scheduler in org.quartz.ee.jta
 

Methods in org.quartz.ee.jta with parameters of type Scheduler
 void JTAJobRunShellFactory.initialize(Scheduler sched)
           Initialize the factory, providing a handle to the Scheduler that should be made available within the JobRunShell and the JobExecutionContext s within it, and a handle to the SchedulingContext that the shell will use in its own operations with the JobStore.
 void JTAAnnotationAwareJobRunShellFactory.initialize(Scheduler sched)
           Initialize the factory, providing a handle to the Scheduler that should be made available within the JobRunShell and the JobExecutionContext s within it, and a handle to the SchedulingContext that the shell will use in its own operations with the JobStore.
 

Constructors in org.quartz.ee.jta with parameters of type Scheduler
JTAJobRunShell(Scheduler scheduler, org.quartz.spi.TriggerFiredBundle bndle)
           Create a JTAJobRunShell instance with the given settings.
 

Uses of Scheduler in org.quartz.impl
 

Classes in org.quartz.impl that implement Scheduler
 class RemoteMBeanScheduler
           An implementation of the Scheduler interface that remotely proxies all method calls to the equivalent call on a given QuartzScheduler instance, via JMX.
 class RemoteScheduler
           An implementation of the Scheduler interface that remotely proxies all method calls to the equivalent call on a given QuartzScheduler instance, via RMI.
 class StdScheduler
           An implementation of the Scheduler interface that directly proxies all method calls to the equivalent call on a given QuartzScheduler instance.
 

Methods in org.quartz.impl that return Scheduler
static Scheduler StdSchedulerFactory.getDefaultScheduler()
           Returns a handle to the default Scheduler, creating it if it does not yet exist.
 Scheduler StdSchedulerFactory.getScheduler()
           Returns a handle to the Scheduler produced by this factory.
 Scheduler JobExecutionContextImpl.getScheduler()
           Get a handle to the Scheduler instance that fired the Job.
 Scheduler DirectSchedulerFactory.getScheduler()
           Returns a handle to the Scheduler produced by this factory.
 Scheduler StdSchedulerFactory.getScheduler(String schedName)
           Returns a handle to the Scheduler with the given name, if it exists (if it has already been instantiated).
 Scheduler DirectSchedulerFactory.getScheduler(String schedName)
           Returns a handle to the Scheduler with the given name, if it exists.
protected  Scheduler StdSchedulerFactory.instantiate(QuartzSchedulerResources rsrcs, QuartzScheduler qs)
           
 Scheduler SchedulerRepository.lookup(String schedName)
           
 

Methods in org.quartz.impl that return types with arguments of type Scheduler
 Collection<Scheduler> StdSchedulerFactory.getAllSchedulers()
           Returns a handle to all known Schedulers (made by any StdSchedulerFactory instance.).
 Collection<Scheduler> DirectSchedulerFactory.getAllSchedulers()
           Returns a handle to all known Schedulers (made by any StdSchedulerFactory instance.).
 Collection<Scheduler> SchedulerRepository.lookupAll()
           
 

Methods in org.quartz.impl with parameters of type Scheduler
 void SchedulerRepository.bind(Scheduler sched)
           
 void StdJobRunShellFactory.initialize(Scheduler sched)
           Initialize the factory, providing a handle to the Scheduler that should be made available within the JobRunShell and the JobExecutionContext s within it.
 

Constructors in org.quartz.impl with parameters of type Scheduler
JobExecutionContextImpl(Scheduler scheduler, org.quartz.spi.TriggerFiredBundle firedBundle, Job job)
           Create a JobExcecutionContext with the given context data.
 

Uses of Scheduler in org.quartz.plugins
 

Methods in org.quartz.plugins that return Scheduler
protected  Scheduler SchedulerPluginWithUserTransactionSupport.getScheduler()
          Get this plugin's Scheduler.
 

Methods in org.quartz.plugins with parameters of type Scheduler
 void SchedulerPluginWithUserTransactionSupport.initialize(String pname, Scheduler sched)
           
 

Uses of Scheduler in org.quartz.plugins.history
 

Methods in org.quartz.plugins.history with parameters of type Scheduler
 void LoggingTriggerHistoryPlugin.initialize(String pname, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 void LoggingJobHistoryPlugin.initialize(String pname, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of Scheduler in org.quartz.plugins.management
 

Methods in org.quartz.plugins.management with parameters of type Scheduler
 void ShutdownHookPlugin.initialize(String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of Scheduler in org.quartz.plugins.xml
 

Methods in org.quartz.plugins.xml with parameters of type Scheduler
 void XMLSchedulingDataProcessorPlugin.initialize(String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of Scheduler in org.quartz.simpl
 

Methods in org.quartz.simpl with parameters of type Scheduler
 Job SimpleJobFactory.newJob(org.quartz.spi.TriggerFiredBundle bundle, Scheduler Scheduler)
           
 Job PropertySettingJobFactory.newJob(org.quartz.spi.TriggerFiredBundle bundle, Scheduler scheduler)
           
 

Uses of Scheduler in org.quartz.xml
 

Methods in org.quartz.xml with parameters of type Scheduler
protected  void XMLSchedulingDataProcessor.executePreProcessCommands(Scheduler scheduler)
           
 void XMLSchedulingDataProcessor.processFileAndScheduleJobs(Scheduler sched, boolean overWriteExistingJobs)
          Process the xml file in the default location, and schedule all of the jobs defined within it.
 void XMLSchedulingDataProcessor.processFileAndScheduleJobs(String fileName, Scheduler sched)
          Process the xml file in the given location, and schedule all of the jobs defined within it.
 void XMLSchedulingDataProcessor.processFileAndScheduleJobs(String fileName, String systemId, Scheduler sched)
          Process the xml file in the given location, and schedule all of the jobs defined within it.
 void XMLSchedulingDataProcessor.processStreamAndScheduleJobs(InputStream stream, String systemId, Scheduler sched)
          Process the xmlfile named fileName with the given system ID.
protected  void XMLSchedulingDataProcessor.scheduleJobs(Scheduler sched)
          Schedules the given sets of jobs and triggers.
 



Copyright 2001-2013, Terracotta, Inc.