如何添加到我的 Quartz 作业 DisallowConcurrenExecution?
如何添加到我的 Quartz 作业 DisallowConcurrenExecution?
我是 Quartz 2.0 的新手,但我实现了 StatefulJob
How do I add to my Quartz Job DisallowConcurrenExecution?
I am new to Quartz 2.0, but I implemented a StatefulJob
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您实现 StatefulJob,那么您将自动继承 @DisallowConcurrenExecution 注解。
您可以使用注释(以及用于在执行后重新保留 JobDataMap 的其他相关注释)来标记您的类 - 并且不实现 StatefulJob 并具有相同的效果。
If you implement StatefulJob, then you automatically inherit the @DisallowConcurrenExecution annotation.
You can instead tag your class with the annotation (and other related annotation for re-persisting the JobDataMap after execution) - and not implement StatefulJob and have the same affect.