I am trying to schedule a class to run every 15 mins. i know we can set in salesforce for every hour, but is there a way to reduce the granuality to 10-15 mins.

   global class scheduledMerge implements Schedulable{
   global void execute(SchedulableContext SC) {
  ProcessTransactionLog p= new ProcessTransactionLog();
  p.ProcessTransaction();

} }

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You can use this apex code snippet to schedule your job to run every 15 minutes.

System.schedule('Job1', '0 * * * * ?', new scheduledMerge());
System.schedule('Job2', '0 15 * * * ?', new scheduledMerge());
System.schedule('Job3', '0 30 * * * ?', new scheduledMerge());
System.schedule('Job4', '0 45 * * * ?', new scheduledMerge());
link|improve this answer
I'm pretty sure you can also use commas to delimit multiple values: System.schedule('Job1', '0 0,15,30,45 * * * ?', new scheduledMerge()); – LaceySnr - Matt Lacey Feb 4 at 4:48
The first line of this answer will cause the job (theoretically) to execute every minute. The "cron-preferred" way to express "run every 15 minutes on the 15" would be '0 0/15 * * * ?'. – jkraybill Feb 5 at 22:54
feedback

I've implemented something similar using the pattern described by Cory Cowgill here:

http://corycowgill.blogspot.com/2010/12/leveraging-scheduled-apex-to-link-batch.html

You need to make the applicable changes if your not using a Batch operation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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