cvs commit: spice/components/threadpool/src/java/org/jcomponent/threadpool/impl AvalonLoggerThreadPoolMonitor.java CommonsThreadPool.java DNAThreadPoolMonitor.java NullThreadPoolMonitor.java PicoCommonsThreadPool.java ThreadPoolMonitor.java

Paul Hammant <[email protected]> Sat, 08 Nov 2003 03:10:26 -0800
Newsgroups gmane.comp.java.spice.cvs
Message-ID <[email protected]>
paul-h      03/11/08 03:10:26

  Modified:    components/threadpool/src/java/org/jcomponent/threadpool/impl
                        AvalonLoggerThreadPoolMonitor.java
                        CommonsThreadPool.java DNAThreadPoolMonitor.java
                        NullThreadPoolMonitor.java
                        PicoCommonsThreadPool.java
  Removed:     components/threadpool/src/java/org/jcomponent/threadpool/impl
                        ThreadPoolMonitor.java
  Log:
  Monitor moved to preferred location. At least my preferred location
  
  Revision  Changes    Path
  1.2       +1 -0      spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/AvalonLoggerThreadPoolMonitor.java
  
  Index: AvalonLoggerThreadPoolMonitor.java
  ===================================================================
  RCS file: /cvsroot/spice/spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/AvalonLoggerThreadPoolMonitor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AvalonLoggerThreadPoolMonitor.java	12 Oct 2003 11:18:31 -0000	1.1
  +++ AvalonLoggerThreadPoolMonitor.java	8 Nov 2003 11:10:25 -0000	1.2
  @@ -8,6 +8,7 @@
   package org.jcomponent.threadpool.impl;
   
   import org.apache.avalon.framework.logger.AbstractLogEnabled;
  +import org.jcomponent.threadpool.ThreadPoolMonitor;
   
   /**
    * Implementation of ThreadPoolMonitor which logs event with Avalon logger.
  
  
  
  1.8       +2 -1      spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/CommonsThreadPool.java
  
  Index: CommonsThreadPool.java
  ===================================================================
  RCS file: /cvsroot/spice/spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/CommonsThreadPool.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- CommonsThreadPool.java	31 Aug 2003 00:50:23 -0000	1.7
  +++ CommonsThreadPool.java	8 Nov 2003 11:10:26 -0000	1.8
  @@ -10,6 +10,7 @@
   import org.apache.commons.pool.PoolableObjectFactory;
   import org.apache.commons.pool.impl.GenericObjectPool;
   import org.jcomponent.threadpool.ThreadPool;
  +import org.jcomponent.threadpool.ThreadPoolMonitor;
   
   /**
    * The CommonsThreadPool is a component that provides a basic
  @@ -27,7 +28,7 @@
    * </pre>
    *
    * @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
  - * @version $Revision: 1.7 $ $Date: 2003/08/31 00:50:23 $
  + * @version $Revision: 1.8 $ $Date: 2003/11/08 11:10:26 $
    */
   public class CommonsThreadPool
       extends AbstractThreadPool
  
  
  
  1.2       +1 -0      spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/DNAThreadPoolMonitor.java
  
  Index: DNAThreadPoolMonitor.java
  ===================================================================
  RCS file: /cvsroot/spice/spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/DNAThreadPoolMonitor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DNAThreadPoolMonitor.java	2 Sep 2003 08:09:21 -0000	1.1
  +++ DNAThreadPoolMonitor.java	8 Nov 2003 11:10:26 -0000	1.2
  @@ -8,6 +8,7 @@
   package org.jcomponent.threadpool.impl;
   
   import org.jcontainer.dna.AbstractLogEnabled;
  +import org.jcomponent.threadpool.ThreadPoolMonitor;
   
   /**
    * Implementation of ThreadPoolMonitor which logs event with DNA logger.
  
  
  
  1.7       +2 -0      spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/NullThreadPoolMonitor.java
  
  Index: NullThreadPoolMonitor.java
  ===================================================================
  RCS file: /cvsroot/spice/spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/NullThreadPoolMonitor.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NullThreadPoolMonitor.java	29 Aug 2003 17:13:43 -0000	1.6
  +++ NullThreadPoolMonitor.java	8 Nov 2003 11:10:26 -0000	1.7
  @@ -7,6 +7,8 @@
    */
    package org.jcomponent.threadpool.impl;
   
  +import org.jcomponent.threadpool.ThreadPoolMonitor;
  +
   /**
    * No-op implementation of ThreadPoolMonitor.
    * 
  
  
  
  1.8       +2 -1      spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/PicoCommonsThreadPool.java
  
  Index: PicoCommonsThreadPool.java
  ===================================================================
  RCS file: /cvsroot/spice/spice/components/threadpool/src/java/org/jcomponent/threadpool/impl/PicoCommonsThreadPool.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- PicoCommonsThreadPool.java	2 Sep 2003 08:07:29 -0000	1.7
  +++ PicoCommonsThreadPool.java	8 Nov 2003 11:10:26 -0000	1.8
  @@ -8,13 +8,14 @@
   package org.jcomponent.threadpool.impl;
   
   import org.apache.commons.pool.impl.GenericObjectPool;
  +import org.jcomponent.threadpool.ThreadPoolMonitor;
   
   /**
    * The PicoCommonsThreadPool wraps the CommonsThreadPool for
    * Pico-compatible systems.
    *
    * @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
  - * @version $Revision: 1.7 $ $Date: 2003/09/02 08:07:29 $
  + * @version $Revision: 1.8 $ $Date: 2003/11/08 11:10:26 $
    */
   public class PicoCommonsThreadPool
       extends CommonsThreadPool
  
  
  


-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/