Where is the documentation for Quartz.NET configuration files?

后端 未结 3 1328
生来不讨喜
生来不讨喜 2020-12-23 17:09

I can\'t find documentation anywhere on the syntax for Quartz.NET configuration files. I\'d like to learn about

  1. Configuring the service itself

3条回答
  •  青春惊慌失措
    2020-12-23 17:53

    There is no complete documentation for quartz.net, but you are free to write one and share. However you can have a look at the Java Quartz documentation:

    http://www.quartz-scheduler.org/documentation/quartz-2.x/configuration/

    90% of the configuration settings are equal e.g.:

    quartz.scheduler.instanceName = DefaultQuartzScheduler
    quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz
    quartz.threadPool.threadCount = 10
    quartz.threadPool.threadPriority = Normal
    quartz.jobStore.type = Quartz.Simpl.RAMJobStore, Quartz
    quartz.jobStore.misfireThreshold = 60000
    

    In addition you can look at the source: https://github.com/quartznet/quartznet

提交回复
热议问题