I've a job in Quartz.Net which triggers quite frequently, and sometimes runs for long, how do i cancel the trigger if the job is already running?
|
1
|
|
|
|
|
|
The more standard way is to use IInterruptableJob, see http://quartznet.sourceforge.net/faq.html#howtostopjob . Of course this is just another way to say if (!jobRunning)... |
||||
|
|
|
Could you not just set some sort of global variable (jobRunning=true) when the job starts and revert it to false once it's finished? Then when the trigger fires, just run your code if(jobRunning==false) |
||
|
|
|
Your app could remove itself from the job list on startup and insert itself on shutdown. |
||
|
|
