示例环境

- .Net 4.5.2

- Quartz 2.4.1

- Common.Logging 3.3.1

- log4net 2.0.5

- Common.Logging.Log4Net1213 3.3.1

1. quartz.config

这个配置文件需要放在服务运行根目录下,用于指定 quartz 的一些运行配置,比如调度名称、线程池实现组件、线程池大小、任务配置文件路径等。

复制代码
 1 # You can configure your scheduler in either <quartz> configuration section  2 # or in quartz properties file  3 # Configuration section has precedence  4  5 quartz.scheduler.instanceName = QuartzNETWinServiceScheduler  6  7 # configure thread pool info  8 quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz  9 quartz.threadPool.threadCount = 10 10 quartz.threadPool.threadPriority = Normal 
        		

网友评论