Skip to content

Instantly share code, notes, and snippets.

@jbro-io
Last active December 11, 2015 11:18
Show Gist options
  • Save jbro-io/4592660 to your computer and use it in GitHub Desktop.
Save jbro-io/4592660 to your computer and use it in GitHub Desktop.
/*
Expression Description
0 0 13 * * ? Class runs every day at 1 PM.
0 0 22 ? * 6L Class runs the last Friday of every month at 10 PM.
0 0 10 ? * MON-FRI Class runs Monday through Friday at 10 AM.
0 0 20 * * ? 2010 Class runs every day at 8 PM during the year 2010.
*/
String onTheHour = '0 0 * * * ?';
String onTheHalfHour = '0 30 * * * ?';
System.schedule('MyJobName', onTheHour, new MySchedulableClass() );
System.schedule('MyJobName', onTheHalfHour, new MySchedulableClass() );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment