You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2004/07/09 00:09:39 UTC

cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/pool ExecutorFactory.java

djencks     2004/07/08 15:09:39

  Added:       modules/core/src/java/org/apache/geronimo/pool
                        ExecutorFactory.java
  Log:
  additional interface to fetch the executor from the thread pool
  
  Revision  Changes    Path
  1.1                  incubator-geronimo/modules/core/src/java/org/apache/geronimo/pool/ExecutorFactory.java
  
  Index: ExecutorFactory.java
  ===================================================================
  package org.apache.geronimo.pool;
  
  import EDU.oswego.cs.dl.util.concurrent.Executor;
  
  /**
   *
   *
   * @version $Revision: 1.1 $ $Date: 2004/07/08 22:09:39 $
   *
   * */
  public interface ExecutorFactory {
  
      Executor getExecutor();
  
  }