The thread pool can be configured in Quartz via the quartz property - org.quartz.threadPool.class
please help and let me know what are the best implementation available in Java (or) list of Java open sources which have the ThreadPool implementations where we can
a) Kill a Quartz Job (i.e) the current executing Thread and create a new Thread since the thread count should be not reduced in the Quartz scheduler due to this job removal b) Option to just kill the Quartz Job (i.e) current executing thread and manually create a new thread for the same since we have killed the same to terminate the process.
Thanks in advance, Kathir