public class JobExecutionContextImpl extends Object implements Serializable, JobExecutionContext
| Constructor and Description |
|---|
JobExecutionContextImpl(Scheduler scheduler,
TriggerFiredBundle firedBundle,
Job job)
Create a JobExcecutionContext with the given context data.
|
| Modifier and Type | Method and Description |
|---|---|
Calendar |
getCalendar()
Get a handle to the
Calendar referenced by the Trigger instance that fired the Job. |
Date |
getFireTime()
The actual time the trigger fired.
|
JobDetail |
getJobDetail()
Get the
JobDetail associated with the Job. |
Job |
getJobInstance()
Get the instance of the
Job that was created for this execution. |
long |
getJobRunTime()
The amount of time the job ran for (in milliseconds).
|
JobDataMap |
getMergedJobDataMap()
Get the convenience
JobDataMap of this execution context. |
Date |
getNextFireTime() |
Date |
getPreviousFireTime() |
int |
getRefireCount() |
Object |
getResult()
Returns the result (if any) that the
Job set before its execution completed (the type of object set as the result is entirely up to
the particular job). |
Date |
getScheduledFireTime()
The scheduled time the trigger fired for.
|
Scheduler |
getScheduler()
Get a handle to the
Scheduler instance that fired the Job. |
Trigger |
getTrigger()
Get a handle to the
Trigger instance that fired the Job. |
void |
incrementRefireCount() |
boolean |
isRecovering()
If the
Job is being re-executed because of a 'recovery' situation, this method will return true. |
void |
setJobRunTime(long jobRunTime) |
void |
setResult(Object result)
Set the result (if any) of the
Job's execution (the type of object set as the result is entirely up to the particular job). |
String |
toString() |
public JobExecutionContextImpl(Scheduler scheduler, TriggerFiredBundle firedBundle, Job job)
Create a JobExcecutionContext with the given context data.
public Scheduler getScheduler()
JobExecutionContext
Get a handle to the Scheduler instance that fired the Job.
getScheduler in interface JobExecutionContextpublic Trigger getTrigger()
JobExecutionContext
Get a handle to the Trigger instance that fired the Job.
getTrigger in interface JobExecutionContextpublic Calendar getCalendar()
JobExecutionContext
Get a handle to the Calendar referenced by the Trigger instance that fired the Job.
getCalendar in interface JobExecutionContextpublic boolean isRecovering()
JobExecutionContext
If the Job is being re-executed because of a 'recovery' situation, this method will return true.
isRecovering in interface JobExecutionContextpublic void incrementRefireCount()
public int getRefireCount()
getRefireCount in interface JobExecutionContextpublic JobDataMap getMergedJobDataMap()
JobExecutionContext
Get the convenience JobDataMap of this execution context.
The JobDataMap found on this object serves as a convenience - it is a merge of the JobDataMap found on the
JobDetail and the one found on the Trigger, with the value in the latter overriding any same-named values in the
former. It is thus considered a 'best practice' that the execute code of a Job retrieve data from the JobDataMap found on this object.
NOTE: Do not expect value 'set' into this JobDataMap to somehow be set back onto a StatefulJob's own JobDataMap.
Attempts to change the contents of this map typically result in an IllegalStateException.
getMergedJobDataMap in interface JobExecutionContextpublic JobDetail getJobDetail()
JobExecutionContext
Get the JobDetail associated with the Job.
getJobDetail in interface JobExecutionContextpublic Job getJobInstance()
JobExecutionContext
Get the instance of the Job that was created for this execution.
Note: The Job instance is not available through remote scheduler interfaces.
getJobInstance in interface JobExecutionContextpublic Date getFireTime()
JobExecutionContextgetFireTime in interface JobExecutionContextJobExecutionContext.getScheduledFireTime()public Date getScheduledFireTime()
JobExecutionContextgetScheduledFireTime in interface JobExecutionContextJobExecutionContext.getFireTime()public Date getPreviousFireTime()
getPreviousFireTime in interface JobExecutionContextpublic Date getNextFireTime()
getNextFireTime in interface JobExecutionContextpublic Object getResult()
JobExecutionContextJob set before its execution completed (the type of object set as the result is entirely up to
the particular job).
The result itself is meaningless to Quartz, but may be informative to or JobListeners
that are watching the job's execution.
TriggerListeners
getResult in interface JobExecutionContextpublic void setResult(Object result)
JobExecutionContextJob's execution (the type of object set as the result is entirely up to the particular job).
The result itself is meaningless to Quartz, but may be informative to or JobListeners
that are watching the job's execution.
TriggerListeners
setResult in interface JobExecutionContextpublic long getJobRunTime()
JobExecutionContextJobListeners and TriggerListeners.getJobRunTime in interface JobExecutionContextpublic void setJobRunTime(long jobRunTime)
jobRunTime - The jobRunTime to set.Copyright © 2011–2017 Knowm Inc.. All rights reserved.