public interface IJobListener
Modifier and Type | Method and Description |
---|---|
void |
jobCancelled(JobEvent jobEvent)
This method is called if the job was cancelled by a call to the cancel()
method of the job.
|
void |
jobFinished(JobEvent jobEvent)
This method is called if the job is ready with its work and has finished.
|
void |
jobStarted(JobEvent jobEvent)
Called to notify the listener that the job was started and will begin to
work now.
|
void jobStarted(JobEvent jobEvent)
jobEvent
- a job event with additional informationvoid jobFinished(JobEvent jobEvent)
jobEvent
- a job event with additional informationvoid jobCancelled(JobEvent jobEvent)
jobEvent
- a job event with additional information