使用 Quartz 安排在 CronTrigger 触发的作业完成后开始作业

发布于 2024-10-21 13:37:58 字数 64 浏览 4 评论 0原文

我想知道是否可以使用 Java 中的 Quartz 安排在 CronTrigger 触发的作业成功完成后启动作业?

I was wondering if it was possible to schedule a job to start after a job fired by a CronTrigger successfully completes, using Quartz in Java?

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

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

发布评论

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

评论(1

稚然 2024-10-28 13:37:58

来自功能文档

当作业完成时,它们会返回
JobCompletionCode 通知
成功或失败的调度程序。这
JobCompletionCode 还可以指示
它应该执行的任何操作的调度程序
根据成功/失败代码采取 -
例如立即重新执行
工作。

我认为 JobChainingJobListener 应该很有趣:

保留给定作业完成后要触发的作业的映射集合。

当然,这是假设您使用quartz 中的CronJob。

否则,您需要(在java中)编写某种套接字侦听器,并将cron作业包装在脚本中,最后,通过在套接字(或管道,或Web服务调用,无论您做什么)上写入内容来触发Java喜欢)。然后,您的 java 代码将触发quartz 作业。

From the feature Documentation:

As Jobs are completed, they return a
JobCompletionCode which informs the
scheduler of success or failure. The
JobCompletionCode can also instruct
the scheduler of any actions it should
take based on the success/fail code -
such as immediate re-execution of the
Job.

I think the JobChainingJobListener should be interesting:

Keeps a collection of mappings of which Job to trigger after the completion of a given job.

This is assuming you use the CronJob from quartz of course.

Otherwise you'd need to program (in java) some kind of socket listener, and wrap the cron job in a script which, at the end, triggers Java by writing something on the socket (or pipe, or web service call, whatever you like). Your java code would then trigger the quartz job.

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