I am trying to figure out a solution to getting a WebRole to run a Task every morning at 5AM. I have looked at Quartz.Net and the examples on stackoverflow but all of them schedule the task to run every 10 minutes. Are there any examples that show how I can schedule it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Quartz.Net should be good for you.Try to use CronTrigger (or CronTriggerImpl in version 2.x). Example of cron-expression - Cron trigger sub-expression position meaning:
|
||||
|
|
|
You might also want to check out the Scheduler add-on in the Windows Azure Store (login to the portal at manage.windowsazure.com, head to Add-Ons, then hit App Services and select Scheduler). Up to 5,000 scheduled jobs/month are free. |
|||
|
|
