Class JobChangeAdapter
- All Implemented Interfaces:
IJobChangeListener
- Direct Known Subclasses:
TeamOperation
IJobChangeListener interface.
Classes that wish to listen to the progress of scheduled jobs can extend this class and override only the methods which they are interested in.
- Since:
- 3.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaboutToRun(IJobChangeEvent event) Notification that a job is about to be run.voidawake(IJobChangeEvent event) Notification that a job was previously sleeping and has now been rescheduled to run.voiddone(IJobChangeEvent event) Notification that a job has completed execution, either due to cancelation, successful completion, or failure.voidrunning(IJobChangeEvent event) Notification that a job has started running.voidscheduled(IJobChangeEvent event) Notification that a job is being added to the queue of scheduled jobs.voidsleeping(IJobChangeEvent event) Notification that a job was waiting to run and has now been put in the sleeping state.
-
Constructor Details
-
JobChangeAdapter
public JobChangeAdapter()
-
-
Method Details
-
aboutToRun
Description copied from interface:IJobChangeListenerNotification that a job is about to be run. Listeners are allowed to sleep, cancel, or change the priority of the job before it is started (and as a result may prevent the run from actually occurring).
Implementations should not block and return promptly.
- Specified by:
aboutToRunin interfaceIJobChangeListener- Parameters:
event- the event details
-
awake
Description copied from interface:IJobChangeListenerNotification that a job was previously sleeping and has now been rescheduled to run.
Implementations should not block and return promptly.
- Specified by:
awakein interfaceIJobChangeListener- Parameters:
event- the event details
-
done
Description copied from interface:IJobChangeListenerNotification that a job has completed execution, either due to cancelation, successful completion, or failure. The event status object indicates how the job finished, and the reason for failure, if applicable.
Implementations should not block and return promptly.
- Specified by:
donein interfaceIJobChangeListener- Parameters:
event- the event details
-
running
Description copied from interface:IJobChangeListenerNotification that a job has started running.
Implementations should not block and return promptly.
- Specified by:
runningin interfaceIJobChangeListener- Parameters:
event- the event details
-
scheduled
Description copied from interface:IJobChangeListenerNotification that a job is being added to the queue of scheduled jobs. The event details includes the scheduling delay before the job should start running.
Implementations should not block and return promptly.
- Specified by:
scheduledin interfaceIJobChangeListener- Parameters:
event- the event details, including the job instance and the scheduling delay
-
sleeping
Description copied from interface:IJobChangeListenerNotification that a job was waiting to run and has now been put in the sleeping state.
Implementations should not block and return promptly.
- Specified by:
sleepingin interfaceIJobChangeListener- Parameters:
event- the event details
-