I am in need to create a cron triggers expression which should fire on every week at 3 pm and start date from 25th April 2012.
Please note i am using CronTriggerImpl and i want to use it in the C# DotNet.
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The expressions have the format
so with 3 expressions you should be able to get what you want.
Line 1 says: 3 pm on first day of week on day of month larger-or-equal to 25th in april month in year 2012
Line 2 says: 3 pm on first day of week on any day of month in months largeror-equal to may in year 2012
Line 3 says: 3 pm on first day of week on any day of month in any month in year larger-or-equal to 2013.
Otherwise just use the simple expression
combined with
Disclaimer: I’ve not actually tried this. 🙂
Edit: I’m not sure quartz likes open ranges… so they’re closed now.