user149621
user149621

Reputation: 529

sample on quartz scheduler thread pool

Please give me the sample on quartz scheduler using thread pooling in java

Upvotes: 2

Views: 6962

Answers (1)

Brian Agnew
Brian Agnew

Reputation: 272417

OReilly has an article detailing the Quartz configuration for thread-pooling. Put the following in your quartz.properties.

org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount =  5
org.quartz.threadPool.threadPriority = 5

Upvotes: 2

Related Questions