I’m trying to get current Executing Job with the method
scheduler.getCurrentlyExecutingJobs(); but I really don’t know how should be used. i’m using jboss 4.2 and quartz 1.6
I’m trying to get current Executing Job with the method scheduler.getCurrentlyExecutingJobs(); but I really
Share
scheduler.getCurrentlyExecutingJobs() method returns List of JobExecutionContext. If you just wanted to get the name of the executing name you can make out from JobDetail which is available in JobExecutionContext.
Note: This method does not behave as expected in cluster environments. There is open bug for this issue.