关于 Quartz.net 的问题

发布于 2024-11-03 13:07:09 字数 262 浏览 1 评论 0原文

请帮我解答以下疑惑。

1)我使用 GetScheduler() 方法将调度程序分配给局部变量。调用 GetScheduler() 时调度程序是否自动启动?如果是,如果有可用的持久作业,调度程序如何启动。那么谁在调用 GetScheduler 呢?

2)将调度程序存储在局部变量(函数内部)中安全吗?

2)如何配置quartz.net属性,例如线程池大小、数据库配置等。

等待您的宝贵回复。

预先感谢,

约翰。

Please help me clear the following doubts.

1) I am using the GetScheduler() method to assign the scheduler to a local variable. Does the scheduler automatically starts when GetScheduler() called? If yes,how does the scheduler starts if there is a persistent job available. Who is calling GetScheduler then?

2) Is storing the scheduler in a local variable(inside a function) safe?

2) How can i configure the quartz.net properties such as thread pool size,database configuration,etc.

Awaiting your valuable reply.

Thanks in advance,

John.

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

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

发布评论

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

评论(1

雨后彩虹 2024-11-10 13:07:09

您使用什么语言来使用 Quartz 调度程序,您已经用 Java 和 .Net 版本标记了这篇文章。

基本方法是构造调度程序工厂并从该对象获取调度程序实例。之后创建触发器并定义作业。

基本上,触发器表示何时运行作业,而作业对象是执行操作的代码。

我强烈建议您阅读相关 Quartz 网站上的教程代码,它可以回答您的上述问题。如果这没有帮助,请回发一些示例代码。

What language are you using to work with the Quartz scheduler, you have tagged this post with both the Java and .Net versions.

The basic approach is to construct the scheduler factory and obtain a scheduler instance from that object. After this create a trigger and define the Job.

Basically the trigger says when to run the job and the job object is the code which performs an action.

I highly recommend reading through the tutorial code on the relevant Quartz website, it answers your above questions. If that doesnt help then post back with some sample code.

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