|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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.spi | Contains Service Provider Interfaces that can be implemented by those wishing to create and use custom versions of Quartz back-end/behind-the-scenes services. |
org.quartz.xml |
Uses of Scheduler in org.quartz |
---|
Methods in org.quartz that return Scheduler | |
---|---|
Scheduler |
SchedulerFactory.getScheduler()
Returns a client-usable handle to a Scheduler . |
Scheduler |
JobExecutionContext.getScheduler()
Get a handle to the Scheduler instance that fired the
Job . |
Scheduler |
SchedulerFactory.getScheduler(java.lang.String schedName)
Returns a handle to the Scheduler with the given name, if it exists. |
Constructors in org.quartz with parameters of type Scheduler | |
---|---|
JobExecutionContext(Scheduler scheduler,
TriggerFiredBundle firedBundle,
Job job)
Create a JobExcecutionContext with the given context data. |
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,
SchedulingContext schedCtxt)
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.core with parameters of type Scheduler | |
---|---|
JobRunShell(JobRunShellFactory jobRunShellFactory,
Scheduler scheduler,
SchedulingContext schdCtxt)
Create a JobRunShell instance with the given settings. |
Uses of Scheduler in org.quartz.ee.jta |
---|
Methods in org.quartz.ee.jta with parameters of type Scheduler | |
---|---|
void |
JTAJobRunShellFactory.initialize(Scheduler scheduler,
SchedulingContext schedCtxt)
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(JobRunShellFactory jobRunShellFactory,
Scheduler scheduler,
SchedulingContext schdCtxt)
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 |
DirectSchedulerFactory.getScheduler()
Returns a handle to the Scheduler produced by this factory. |
Scheduler |
StdSchedulerFactory.getScheduler(java.lang.String schedName)
Returns a handle to the Scheduler with the given name, if it exists (if it has already been instantiated). |
Scheduler |
DirectSchedulerFactory.getScheduler(java.lang.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(java.lang.String schedName)
|
Methods in org.quartz.impl with parameters of type Scheduler | |
---|---|
void |
SchedulerRepository.bind(Scheduler sched)
|
void |
StdJobRunShellFactory.initialize(Scheduler scheduler,
SchedulingContext schedCtxt)
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 . |
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(java.lang.String name,
Scheduler scheduler)
|
Uses of Scheduler in org.quartz.plugins.history |
---|
Methods in org.quartz.plugins.history with parameters of type Scheduler | |
---|---|
void |
LoggingTriggerHistoryPlugin.initialize(java.lang.String name,
Scheduler scheduler)
Called during creation of the Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
void |
LoggingJobHistoryPlugin.initialize(java.lang.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.management |
---|
Methods in org.quartz.plugins.management with parameters of type Scheduler | |
---|---|
void |
ShutdownHookPlugin.initialize(java.lang.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(java.lang.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.spi |
---|
Methods in org.quartz.spi with parameters of type Scheduler | |
---|---|
void |
SchedulerPlugin.initialize(java.lang.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.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(java.lang.String fileName,
Scheduler sched)
Process the xml file in the given location, and schedule all of the jobs defined within it. |
void |
XMLSchedulingDataProcessor.processFileAndScheduleJobs(java.lang.String fileName,
java.lang.String systemId,
Scheduler sched)
Process the xml file in the given location, and schedule all of the jobs defined within it. |
void |
XMLSchedulingDataProcessor.processStreamAndScheduleJobs(java.io.InputStream stream,
java.lang.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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |