Quartz.Net - 从今天开始每季度一次

发布于 2024-11-27 09:27:21 字数 212 浏览 1 评论 0原文

如何创建从今天开始每 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2024-12-04 09:27:21

cron 中的字段为

  1. Seconds
  2. Minutes
  3. Hours
  4. Day-of-Month
  5. Month
  6. Day-of-Week
  7. Year(可选字段)

因此您可能会喜欢

0 0 0 1 */3 ?

Which 会在该月第一天的午夜每 3 个月触发一次。

http://quartznet.sourceforge.net/tutorial/lesson_6.html

The fields in cron are

  1. Seconds
  2. Minutes
  3. Hours
  4. Day-of-Month
  5. Month
  6. Day-of-Week
  7. Year (optional field)

So you might like

0 0 0 1 */3 ?

Which will fire every 3 months on the first of the month at midnight.

http://quartznet.sourceforge.net/tutorial/lesson_6.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文