Last active
December 11, 2015 11:18
-
-
Save jbro-io/4592660 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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