Quartz Scheduler Thread Pool Sample

Please give me a sample quartz scheduler using thread pool in java

+2


source to share


1 answer


OReilly has an article that details Quartz configuration for thread pooling. Place the following in quartz.properties

.



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

      

+2


source







All Articles