I have cronjobs
which are scheduled in after update trigger.
When some user make an update in one and the same record I need the previous cronjob(batch)
to be aborted and to start a new cronjob
.
How can I find the previous cronjob
?
Is there a way to find the previous cronjob
by name?
Note: I cannot find the cronjob
by id because I do no have the cronjob
id from the previous invocation of the afterUpdate
trigger.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You can query for the CronJobDetail name:
CronTrigger[] jobs = [SELECT Id FROM CronTrigger WHERE CronJobDetail.Name = 'Sample']; for(CronTrigger job: jobs) { System.abortJob(job.Id); }
This works for both scheduled batch jobs and scheduleable classes.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0