Quartz 服务 - 简单触发器
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果触发器设置为每分钟触发,它将每分钟触发(并且将创建并调用一个新的作业实例)。
除非相关作业被标记为@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.