Package | Description |
---|---|
org.quartz.impl.jdbcjobstore | |
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 |
Modifier and Type | Method and Description |
---|---|
void |
JobStoreTX.initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler) |
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) |
JobDetail |
StdJDBCDelegate.selectJobDetail(java.sql.Connection conn,
java.lang.String jobName,
java.lang.String groupName,
ClassLoadHelper loadHelper)
Select the JobDetail object for a given job name / group name.
|
JobDetail |
StdJDBCDelegate.selectJobForTrigger(java.sql.Connection conn,
java.lang.String triggerName,
java.lang.String groupName,
ClassLoadHelper loadHelper)
Select the job to which the trigger is associated.
|
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 signaler)
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. |
Constructor and Description |
---|
JobSchedulingDataProcessor(ClassLoadHelper clh,
boolean validating,
boolean validatingSchema)
Constructor for QuartzMetaDataProcessor.
|