| Package | Description |
|---|---|
| org.knowm.sundial | |
| org.quartz.builders | |
| org.quartz.core | |
| org.quartz.jobs |
| Modifier and Type | Class and Description |
|---|---|
class |
Job |
| Modifier and Type | Method and Description |
|---|---|
static JobBuilder |
JobBuilder.newJobBuilder(Class<? extends Job> jobClass)
Create a JobBuilder with which to define a
JobDetail, and set the class name of the Job to be executed. |
JobBuilder |
JobBuilder.ofType(Class<? extends Job> jobClass)
Set the class which will be instantiated and executed when a Trigger fires that is associated with this JobDetail.
|
| Modifier and Type | Method and Description |
|---|---|
Job |
JobExecutionContextImpl.getJobInstance() |
Job |
JobExecutionContext.getJobInstance()
Get the instance of the
Job that was created for this execution. |
| Constructor and Description |
|---|
JobExecutionContextImpl(Scheduler scheduler,
TriggerFiredBundle firedBundle,
Job job)
Create a JobExcecutionContext with the given context data.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
InterruptableJob
The interface to be implemented by
that provide a mechanism for having their execution interrupted. |
| Modifier and Type | Class and Description |
|---|---|
class |
NoOpJob
An implementation of Job, that does absolutely nothing - useful for system which only wish to use
and , rather than writing Jobs
that perform work. |
| Modifier and Type | Method and Description |
|---|---|
Job |
SimpleJobFactory.newJob(TriggerFiredBundle bundle,
Scheduler Scheduler) |
Job |
JobFactory.newJob(TriggerFiredBundle bundle,
Scheduler scheduler)
Called by the scheduler at the time of the trigger firing, in order to produce a
Job instance on which to call execute. |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Job> |
JobDetailImpl.getJobClass() |
Class<? extends Job> |
JobDetail.getJobClass()
Get the instance of
Job that will be executed. |
| Modifier and Type | Method and Description |
|---|---|
void |
JobDetailImpl.setJobClass(Class<? extends Job> jobClass)
Set the instance of
Job that will be executed. |
Copyright © 2011–2017 Knowm Inc.. All rights reserved.