Quartz 服务 - 简单触发器

发布于 2024-12-19 12:30:31 字数 181 浏览 0 评论 0原文

我有一个 Quartz 作业,我每分钟都想触发它。该作业本身包含检查是否有进程要运行的逻辑,如果有,则该作业可能需要 45 分钟才能完成。

使用简单触发器,Quartz 是否会每分钟触发该作业,即使已经有一个作业正在运行?或者如果间隔设置为 1 分钟,这是否意味着 Quartz 会在作业完成后等待 1 分钟,然后再触发下一个作业?

I have a Quartz Job that I want to fire every minute. The job itself contains logic to check to see if there is a process to run and if there is, this job could take 45 minutes to complete.

Using a Simple Trigger, will Quartz fire this job off every minute even if there is one already running? Or if the interval is set to 1 minute, does that mean that Quartz will wait 1 minute after the job is done before it fires the next job?

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

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

发布评论

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

评论(1

自在安然 2024-12-26 12:30:31

如果触发器设置为每分钟触发,它将每分钟触发(并且将创建并调用一个新的作业实例)。

除非相关作业被标记为@DisallowConcurrentExecution。

If the trigger is set to fire every minute, it will fire every minute (and a new job instance will be created and invoked).

Unless the related job is marked @DisallowConcurrentExecution.

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