Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a requirement to schedule and unschedule a quartz job programmatically. I was able to schedule it using MyJob.schedule(cronExpression). Is there a way to similarly unschedule the job?

I am using quartz plugin 0.4.2 with Grails 1.2.3

share|improve this question

2 Answers

up vote 2 down vote accepted

removeJob() removes the job altogether and it cannot be scheduled again programmatically with MyJob.schedule(Trigger)

Here is what worked for me,

quartzScheduler.unscheduleJob("TriggerName", "TriggerGroup")
//TriggerName and TriggerGroup are the name and group of the Trigger used for schedule
share|improve this answer

QuartzGrailsPlugin.groovy says it's removeJob().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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