如何确保时间到达时Quartz作业有可用线程
有没有办法确保当触发器触发时间到达时,它始终有一个线程可以运行。触发器具有优先级,但这不能保证,并且我提供更多线程,然后最大作业数不是一个选项。我有很多作业但其中之一必须在指定时间运行。
Is there a way to ensure that when a trigger fire time arrived it has always a thread to run on.triggers has priority but this not guarantee ,and i giving more thread then max number of job is not an option.I have lots of job but one of them must run at specified time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为该作业使用单独的调度程序。所以重要的工作总是有一个空闲线程,因为没有其他人会使用它。
Use a separate scheduler for the job. So the important job will always have a free thread, because nobody else would use it.