Reputation: 529
Please give me the sample on quartz scheduler using thread pooling in java
Upvotes: 2
Views: 6962
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