|
From: Alef A. <al...@jt...> - 2004-06-23 15:49:39
|
I've just committed a small (backward compatible) enhancement to the MethodInvokingJobDetailFactoryBean that allows you to specify whether or not method invoking jobs should be run in a concurrent fashion. By default, if you register two triggers for the same job, the second will start running if the first one hasn't finished. You can now set MethodInvokinJobDetailFactoryBean.concurrent to false, this will instantiate a Stateful job instead of a normal and stateless Job, preventing jobs from interfering with eachother. Additions to the documentation and the test suite have been done. Alef |