Uses of Interface org.quartz.spi.JobFactory
|
Packages that use JobFactory |
| 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.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler. |
| org.quartz.simpl |
Contains simple / light-weight implementations (with no dependencies on
external libraries) of interfaces required by the
org.quartz.core.QuartzScheduler. |
| Classes in org.quartz.simpl that implement JobFactory |
class |
PropertySettingJobFactory
A JobFactory that instantiates the Job instance (using the default no-arg
constructor, or more specifically: class.newInstance()), and
then attempts to set all values in the JobExecutionContext's
JobDataMap onto bean properties of the Job. |
class |
SimpleJobFactory
The default JobFactory used by Quartz - simply calls
newInstance() on the job class. |
|