Issue
I want to use Quartz Framework in my application. There are two jobs in the scheduler. Now I want to check if job1 is running. How can I check? I have tried to Google it but failed to find the solution.
I am following the first of example from Quartz distribution.
Solution
You can use scheduler.getCurrentlyExecutingJobs()
to get a list of all jobs which are currently running.
Answered By - dogbane
Answer Checked By - Candace Johnson (JavaFixing Volunteer)