Package | Description |
---|---|
org.quartz.impl.jdbcjobstore | |
org.quartz.plugins.history | |
org.quartz.plugins.interrupt | |
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.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 | |
org.terracotta.quartz |
Modifier and Type | Field and Description |
---|---|
protected ClassLoadHelper |
StdJDBCDelegate.classLoadHelper |
Modifier and Type | Method and Description |
---|---|
protected ClassLoadHelper |
JobStoreSupport.getClassLoadHelper() |
Modifier and Type | Method and Description |
---|---|
void |
JobStoreTX.initialize(ClassLoadHelper classLoadHelper,
SchedulerSignaler schedSignaler) |
void |
JobStoreSupport.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler)
Called by the QuartzScheduler before the
JobStore is
used, in order to give it a chance to initialize. |
void |
JobStoreCMT.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler) |
void |
StdJDBCDelegate.initialize(org.slf4j.Logger logger,
String tablePrefix,
String schedName,
String instanceId,
ClassLoadHelper classLoadHelper,
boolean useProperties,
String initString) |
void |
DriverDelegate.initialize(org.slf4j.Logger logger,
String tablePrefix,
String schedName,
String instanceId,
ClassLoadHelper classLoadHelper,
boolean useProperties,
String initString) |
JobDetail |
StdJDBCDelegate.selectJobDetail(Connection conn,
JobKey jobKey,
ClassLoadHelper loadHelper)
Select the JobDetail object for a given job name / group name.
|
JobDetail |
DriverDelegate.selectJobDetail(Connection conn,
JobKey jobKey,
ClassLoadHelper loadHelper)
Select the JobDetail object for a given job name / group name.
|
JobDetail |
StdJDBCDelegate.selectJobForTrigger(Connection conn,
ClassLoadHelper loadHelper,
TriggerKey triggerKey)
Select the job to which the trigger is associated.
|
JobDetail |
DriverDelegate.selectJobForTrigger(Connection conn,
ClassLoadHelper loadHelper,
TriggerKey triggerKey)
Select the job to which the trigger is associated.
|
JobDetail |
StdJDBCDelegate.selectJobForTrigger(Connection conn,
ClassLoadHelper loadHelper,
TriggerKey triggerKey,
boolean loadJobClass)
Select the job to which the trigger is associated.
|
JobDetail |
DriverDelegate.selectJobForTrigger(Connection conn,
ClassLoadHelper loadHelper,
TriggerKey triggerKey,
boolean loadJobClass)
Select the job to which the trigger is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
LoggingTriggerHistoryPlugin.initialize(String pname,
Scheduler scheduler,
ClassLoadHelper classLoadHelper)
Called during creation of the
Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
void |
LoggingJobHistoryPlugin.initialize(String pname,
Scheduler scheduler,
ClassLoadHelper classLoadHelper)
Called during creation of the
Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
Modifier and Type | Method and Description |
---|---|
void |
JobInterruptMonitorPlugin.initialize(String name,
Scheduler scheduler,
ClassLoadHelper helper) |
Modifier and Type | Method and Description |
---|---|
void |
ShutdownHookPlugin.initialize(String name,
Scheduler scheduler,
ClassLoadHelper classLoadHelper)
Called during creation of the
Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
Modifier and Type | Field and Description |
---|---|
protected ClassLoadHelper |
XMLSchedulingDataProcessorPlugin.classLoadHelper |
Modifier and Type | Method and Description |
---|---|
void |
XMLSchedulingDataProcessorPlugin.initialize(String name,
Scheduler scheduler,
ClassLoadHelper schedulerFactoryClassLoadHelper)
Called during creation of the
Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
Modifier and Type | Class and Description |
---|---|
class |
CascadingClassLoadHelper
A
ClassLoadHelper uses all of the ClassLoadHelper
types that are found in this package in its attempts to load a class, when
one scheme is found to work, it is promoted to the scheme that will be used
first the next time a class is loaded (in order to improve performance). |
class |
InitThreadContextClassLoadHelper
A
ClassLoadHelper that uses either the context class loader
of the thread that initialized Quartz. |
class |
LoadingLoaderClassLoadHelper
A
ClassLoadHelper that uses either the loader of it's own
class (this.getClass().getClassLoader().loadClass( .. |
class |
SimpleClassLoadHelper
A
ClassLoadHelper that simply calls Class.forName(..) . |
class |
ThreadContextClassLoadHelper
A
ClassLoadHelper that uses either the current thread's
context class loader (Thread.currentThread().getContextClassLoader().loadClass( .. |
Modifier and Type | Method and Description |
---|---|
void |
RAMJobStore.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler schedSignaler)
Called by the QuartzScheduler before the
JobStore is
used, in order to give the it a chance to initialize. |
Modifier and Type | Method and Description |
---|---|
void |
JobStore.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler)
Called by the QuartzScheduler before the
JobStore is
used, in order to give the it a chance to initialize. |
void |
SchedulerPlugin.initialize(String name,
Scheduler scheduler,
ClassLoadHelper loadHelper)
Called during creation of the
Scheduler in order to give
the SchedulerPlugin a chance to initialize. |
Modifier and Type | Field and Description |
---|---|
protected ClassLoadHelper |
XMLSchedulingDataProcessor.classLoadHelper |
Constructor and Description |
---|
XMLSchedulingDataProcessor(ClassLoadHelper clh)
Constructor for JobSchedulingDataLoader.
|
Modifier and Type | Method and Description |
---|---|
void |
PlainTerracottaJobStore.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler) |
void |
AbstractTerracottaJobStore.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler) |
Copyright 2001-2019, Terracotta, Inc.