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.

  1. sched.interrupt(job.getKey());

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.



Discussion

No Comment Found