|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JobStore | |
|---|---|
| org.quartz.core | Contains the core classes and interfaces for the Quartz job scheduler. |
| org.quartz.impl | Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. |
| 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. |
| Uses of JobStore in org.quartz.core |
|---|
| Methods in org.quartz.core that return JobStore | |
|---|---|
JobStore |
QuartzSchedulerResources.getJobStore()
Get the for the
to use. |
| Methods in org.quartz.core with parameters of type JobStore | |
|---|---|
void |
QuartzSchedulerResources.setJobStore(JobStore jobStore)
Set the for the
to use. |
| Uses of JobStore in org.quartz.impl |
|---|
| Methods in org.quartz.impl with parameters of type JobStore | |
|---|---|
void |
DirectSchedulerFactory.createScheduler(java.lang.String schedulerName,
java.lang.String schedulerInstanceId,
ThreadPool threadPool,
JobStore jobStore)
Same as DirectSchedulerFactory.createScheduler(ThreadPool threadPool, JobStore jobStore),
with the addition of specifying the scheduler name and instance ID. |
void |
DirectSchedulerFactory.createScheduler(java.lang.String schedulerName,
java.lang.String schedulerInstanceId,
ThreadPool threadPool,
JobStore jobStore,
java.util.Map schedulerPluginMap,
java.lang.String rmiRegistryHost,
int rmiRegistryPort,
long idleWaitTime,
long dbFailureRetryInterval,
boolean jmxExport,
java.lang.String jmxObjectName)
Creates a scheduler using the specified thread pool, job store, and plugins, and binds it to RMI. |
void |
DirectSchedulerFactory.createScheduler(java.lang.String schedulerName,
java.lang.String schedulerInstanceId,
ThreadPool threadPool,
JobStore jobStore,
java.lang.String rmiRegistryHost,
int rmiRegistryPort,
long idleWaitTime,
long dbFailureRetryInterval)
Creates a scheduler using the specified thread pool and job store and binds it to RMI. |
void |
DirectSchedulerFactory.createScheduler(java.lang.String schedulerName,
java.lang.String schedulerInstanceId,
ThreadPool threadPool,
ThreadExecutor threadExecutor,
JobStore jobStore,
java.util.Map schedulerPluginMap,
java.lang.String rmiRegistryHost,
int rmiRegistryPort,
long idleWaitTime,
long dbFailureRetryInterval,
boolean jmxExport,
java.lang.String jmxObjectName)
Creates a scheduler using the specified thread pool, job store, and plugins, and binds it to RMI. |
void |
DirectSchedulerFactory.createScheduler(ThreadPool threadPool,
JobStore jobStore)
Creates a scheduler using the specified thread pool and job store. |
| Uses of JobStore in org.quartz.impl.jdbcjobstore |
|---|
| Classes in org.quartz.impl.jdbcjobstore that implement JobStore | |
|---|---|
class |
JobStoreCMT
JobStoreCMT is meant to be used in an application-server
environment that provides container-managed-transactions. |
class |
JobStoreSupport
Contains base functionality for JDBC-based JobStore implementations. |
class |
JobStoreTX
JobStoreTX is meant to be used in a standalone environment. |
| Uses of JobStore in org.quartz.simpl |
|---|
| Classes in org.quartz.simpl that implement JobStore | |
|---|---|
class |
RAMJobStore
This class implements a that
utilizes RAM as its storage device. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||