删除不会再次运行的石英触发器

发布于 2024-10-16 12:31:15 字数 86 浏览 4 评论 0原文

石英调度程序是否会删除不再运行的触发器,或者我们应该使用RemoveTrigger方法自己删除它们。我想在某个时间运行一个作业,但执行后该作业将不会再次运行。

Does the quartz scheduler remove the triggers that won't run again or we should remove them ourselves by using the RemoveTrigger method. I want to run a job at an instance of time but after execution that job won't run again.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沉默的熊 2024-10-23 12:31:15

是的,默认情况下 Quartz 会删除已完成的触发器(不会再次触发)。您不需要手动删除它们,除非您设置了一个永不过期的触发器,例如 CronTrigger。

Yes, by default Quartz will remove triggers that are complete (will not fire again). You do not need to remove them manually unless you've set up a trigger that will never expire, like a CronTrigger, for example.

请恋爱 2024-10-23 12:31:15

如果您使用 SimpleTrigger 安排作业,则无需手动将其删除。

如果您想自己检查,方法是将 Quartz 配置为使用数据库存储,以便您可以对触发器表运行查询。

http://www.quartz-scheduler.org/docs/configuration/ConfigJobStoreTX.html

If you scheduled your job using a SimpleTrigger, then you don't need to remove it manually.

If you want to check it by yourself, the way is to configure Quartz to use a database store, so that you can run a query against the triggers table.

http://www.quartz-scheduler.org/docs/configuration/ConfigJobStoreTX.html

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