|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.quartz.JobExecutionContext
public class JobExecutionContext
A context bundle containing handles to various environment information, that
is given to a
instance as it is
executed, and to a JobDetail
instance after the
execution completes.
Trigger
The JobDataMap
found on this object (via the
getMergedJobDataMap()
method) 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.
JobExecutionContext
s are also returned from the
Scheduler.getCurrentlyExecutingJobs()
method. These are the same instances as those passed into the jobs that are
currently executing within the scheduler. The exception to this is when your
application is using Quartz remotely (i.e. via RMI) - in which case you get
a clone of the JobExecutionContext
s, and their references to
the Scheduler
and Job
instances have been lost (a
clone of the JobDetail
is still available - just not a handle
to the job instance that is running).
getJobDetail()
,
getScheduler()
,
getMergedJobDataMap()
,
Job
,
Trigger
,
JobDataMap
,
Serialized FormConstructor Summary | |
---|---|
JobExecutionContext(Scheduler scheduler,
TriggerFiredBundle firedBundle,
Job job)
Create a JobExcecutionContext with the given context data. |
Method Summary | |
---|---|
java.lang.Object |
get(java.lang.Object key)
Get the value with the given key from the context's data map. |
Calendar |
getCalendar()
Get a handle to the Calendar referenced by the Trigger
instance that fired the Job . |
java.util.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. |
java.util.Date |
getNextFireTime()
|
java.util.Date |
getPreviousFireTime()
|
int |
getRefireCount()
|
java.lang.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). |
java.util.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 |
put(java.lang.Object key,
java.lang.Object value)
Put the specified value into the context's data map with the given key. |
void |
setJobRunTime(long jobRunTime)
|
void |
setResult(java.lang.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). |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public JobExecutionContext(Scheduler scheduler, TriggerFiredBundle firedBundle, Job job)
Create a JobExcecutionContext with the given context data.
Method Detail |
---|
public Scheduler getScheduler()
Get a handle to the Scheduler
instance that fired the
Job
.
public Trigger getTrigger()
Get a handle to the Trigger
instance that fired the
Job
.
public Calendar getCalendar()
Get a handle to the Calendar
referenced by the Trigger
instance that fired the Job
.
public boolean isRecovering()
If the Job
is being re-executed because of a 'recovery'
situation, this method will return true
.
public void incrementRefireCount()
public int getRefireCount()
public JobDataMap getMergedJobDataMap()
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
.
public JobDetail getJobDetail()
Get the JobDetail
associated with the Job
.
public Job getJobInstance()
Get the instance of the Job
that was created for this
execution.
Note: The Job instance is not available through remote scheduler interfaces.
public java.util.Date getFireTime()
getScheduledFireTime()
public java.util.Date getScheduledFireTime()
getFireTime()
public java.util.Date getPreviousFireTime()
public java.util.Date getNextFireTime()
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.Object getResult()
Job
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
JobListener
s
that are watching the job's
execution.
TriggerListener
s
public void setResult(java.lang.Object result)
Job
'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
JobListener
s
that are watching the job's
execution.
TriggerListener
s
public long getJobRunTime()
JobListener
s and TriggerListener
s.
public void setJobRunTime(long jobRunTime)
jobRunTime
- The jobRunTime to set.public void put(java.lang.Object key, java.lang.Object value)
NOTE: this data is volatile - it is lost after the job execution completes, and all TriggerListeners and JobListeners have been notified.
key
- value
- public java.lang.Object get(java.lang.Object key)
key
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |