添加 Quartz.net 作业而不启动调度程序
有没有办法在不启动调度程序实例的情况下将作业添加到 Quartz.Net 作业存储?
Is there any way of adding jobs to Quartz.Net jobstore without starting up a scheduler instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了创建管理实例(仅用于作业和触发器配置的调度程序,如 Web),您可以将线程池更改为 ZeroSizeThreadPool,这样您就可以启动调度程序,而不必担心它实际运行任何作业。
您应该始终使用调度程序接口而不是直接数据库访问。
For creating a managing instance (a scheduler that is used just for job and trigger configuration, like web) you can change your thread pool to ZeroSizeThreadPool that allows you to start scheduler without the fear of it actually running any jobs.
You should always use the scheduler interface instead of direct database access.
如果您使用基于数据库的作业存储,则可以将其直接添加到数据库中。尽管这不是推荐的方法,但它当然是可能的。
If you're using a database based job store you could add it directly to the database. Although that's not the recommended way of doing it, it's certainly possible.