InterviewSolution
Saved Bookmarks
| 1. |
How Would You Stop A Running Job? |
|
Answer» You can STOP a RUNNING JOB by calling interrupt on the scheduler and providing the job key. The job that you are interrupting MUST implement the InterruptableJob interface.
You can stop a running job by calling interrupt on the scheduler and providing the job key. The job that you are interrupting must implement the InterruptableJob interface. |
|