Quartz.Net - 从今天开始每季度一次
如何创建从今天开始每 3 个月(每季度)触发一次的触发器。
我虽然可以做一些简单的事情,但
tr = TriggerUtils.MakeHourlyTrigger(2190);
// (365 / 4) * 24 hours = 2190
我认为这不是解决这个问题的最佳方法。我想可能有一些奇特的 cron 触发方法来解决它?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
cron 中的字段为
因此您可能会喜欢
Which 会在该月第一天的午夜每 3 个月触发一次。
http://quartznet.sourceforge.net/tutorial/lesson_6.html
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