Author: giacomo Date: Sun Nov 7 05:52:59 2004 New Revision: 56847 Modified: cocoon/trunk/gump.xml cocoon/trunk/src/blocks/cron/java/org/apache/cocoon/components/cron/QuartzJobScheduler.java cocoon/trunk/src/blocks/cron/samples/docs.xml Log: made cron block independent of project "concurrent"
Modified: cocoon/trunk/gump.xml ============================================================================== --- cocoon/trunk/gump.xml (original) +++ cocoon/trunk/gump.xml Sun Nov 7 05:52:59 2004 @@ -982,7 +982,6 @@ <depend project="cocoon" inherit="all"/> <depend project="quartz"/> - <depend project="concurrent"/> <depend project="excalibur-datasource"/> <work nested="tools/anttasks"/> Modified: cocoon/trunk/src/blocks/cron/java/org/apache/cocoon/components/cron/QuartzJobScheduler.java ============================================================================== --- cocoon/trunk/src/blocks/cron/java/org/apache/cocoon/components/cron/QuartzJobScheduler.java (original) +++ cocoon/trunk/src/blocks/cron/java/org/apache/cocoon/components/cron/QuartzJobScheduler.java Sun Nov 7 05:52:59 2004 @@ -59,10 +59,6 @@ import org.quartz.utils.DBConnectionManager; import org.quartz.utils.JNDIConnectionProvider; -import EDU.oswego.cs.dl.util.concurrent.BoundedBuffer; -import EDU.oswego.cs.dl.util.concurrent.LinkedQueue; -import EDU.oswego.cs.dl.util.concurrent.PooledExecutor; - /** * This component can either schedule jobs or directly execute one. * Modified: cocoon/trunk/src/blocks/cron/samples/docs.xml ============================================================================== --- cocoon/trunk/src/blocks/cron/samples/docs.xml (original) +++ cocoon/trunk/src/blocks/cron/samples/docs.xml Sun Nov 7 05:52:59 2004 @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. --> -<!-- CVS $Id: docs.xml,v 1.5 2004/07/11 19:47:56 antonio Exp $ --> +<!-- CVS $Id$ --> <document> <body> <section> @@ -26,10 +26,7 @@ <code>JobScheduler</code></link> is based on the <link href="http://quartz.sf.net">Quartz</link> job scheduling project and the - <link href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/PooledExecutor.html"> - <code>PooledExecutor</code></link> of - <link href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> - Doug Leas Concurrency Package</link> as a ThreadPool implementation for the Quartz Scheduler. + <code>RunnableManager</code></link> as a ThreadPool implementation for the Quartz Scheduler. </p> <p style="background-color: yellow"> @@ -113,9 +110,8 @@ </thread-pool> </source> <p> - As mentioned in the beginning, more information about the thread pool details of the base - <link href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/PooledExecutor.html"> - <code>PooledExecutor</code></link> class can be found there. + As mentioned in the beginning, more information about the thread pool details base on the + <code>RunnableManager#createPool(...)</code></link> method can be found there. </p> </section>