How do you create a trigger that is triggered every 3 months (quarterly) starting today.
I though i could do something as simple as
tr = TriggerUtils.MakeHourlyTrigger(2190);
// (365 / 4) * 24 hours = 2190
I don’t think this is best way to solve this. I though there might be some fancy cron trigger way of solving it?
The fields in cron are
So you might like
Which will fire every 3 months on the first of the month at midnight.
http://quartznet.sourceforge.net/tutorial/lesson_6.html