| Package | Description |
|---|---|
| com.helger.quartz |
The main package of Quartz, containing the client-side interfaces.
|
| com.helger.quartz.core |
Contains the core classes and interfaces for the Quartz job scheduler.
|
| com.helger.quartz.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
| com.helger.quartz.simpl |
Contains simple / light-weight implementations (with no dependencies on
external libraries) of interfaces required by the
org.quartz.core.QuartzScheduler.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IScheduler.setJobFactory(IJobFactory factory)
Set the
JobFactory that will be responsible for producing
instances of Job classes. |
| Modifier and Type | Method and Description |
|---|---|
IJobFactory |
QuartzScheduler.getJobFactory() |
| Modifier and Type | Method and Description |
|---|---|
void |
QuartzScheduler.setJobFactory(IJobFactory aFactory) |
| Modifier and Type | Method and Description |
|---|---|
void |
StdScheduler.setJobFactory(IJobFactory factory) |
| Modifier and Type | Class and Description |
|---|---|
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 from the SchedulerContext and
the JobExecutionContext's merged JobDataMap onto
bean properties of the Job. |
class |
SimpleJobFactory
The default JobFactory used by Quartz - simply calls
newInstance() on the job class. |
Copyright © 2016–2021 Philip Helger. All rights reserved.