vote up 0 vote down star
1

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?

flag

63% accept rate

3 Answers

vote up 1 vote down check

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)...

link|flag
is only one instance of that class which implements IInterruptableJob allowed at a time, or a Job which uses that class? – Carl Hörberg Sep 15 at 8:49
If you want to allow only one instance at a time then IStatefulJob is your fried, quartznet.sourceforge.net/faq.html#howtopreventco… . IInterruptableJob just gives you a standard way to signal interrupt and you need to do the heavy-lifting on the job side (check if interrupted flag has been raised). – Marko Lahma Sep 15 at 13:27
vote up 1 vote down

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)

link|flag
yes, often the simplest solutions are the best. i've implemented this, i though there were a implemented solution for this which paused the job until the first is done, but whatever, this works just fine! – Carl Hörberg Sep 10 at 14:38
vote up 0 vote down

Your app could remove itself from the job list on startup and insert itself on shutdown.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.