You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2002/08/09 07:30:03 UTC

cvs commit: jakarta-avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl SourceResolverImpl.java

bloritsch    2002/08/08 22:30:03

  Modified:    sourceresolve/src/java/org/apache/excalibur/source/impl
                        SourceResolverImpl.java
  Added:       sourceresolve/src/java/org/apache/excalibur/source
                        Recyclable.java
  Log:
  Update SourceResolve so that it is not dependent on Pool
  
  Revision  Changes    Path
  1.1                  jakarta-avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/Recyclable.java
  
  Index: Recyclable.java
  ===================================================================
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE.txt file.
   */
  package org.apache.excalibur.source;
  
  
  /**
   * This interface standardizes the behaviour of a recyclable object.
   * A recyclable object is defined as an object that can be used to
   * encapsulate another object without being altered by its content.
   * Therefore, a recyclable object may be recycled and reused many times.
   *
   * This is helpful in cases where recyclable objects are continously
   * created and destroyed, causing a much greater amount of garbage to
   * be collected by the JVM garbage collector. By making it recyclable,
   * it is possible to reduce the GC execution time, thus incrementing the
   * overall performance of a process and decrementing the chance of
   * memory overflow.
   *
   * Every implementation must provide their own method to allow this
   * recyclable object to be reused by setting its content.
   *
   * @author <a href="mailto:stefano@apache.org">Berin Loritsch</a>
   * @author <a href="mailto:stefano@apache.org">Stefano Mazzocchi</a>
   * @author <a href="mailto:peter@apache.org">Peter Donald</a>
   * @version CVS $Revision: 1.1 $ $Date: 2002/08/09 05:30:02 $
   * @since 4.0
   */
  public interface Recyclable
  {
      /**
       * This method should be implemented to reset the object to its "ready"
       * state.  That means that all JDBC connectinos have been properly taken
       * care of, any threads that are spawned during use need to be reclaimed,
       * etc.
       */
      void recycle();
  }
  
  
  
  1.11      +2 -2      jakarta-avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/SourceResolverImpl.java
  
  Index: SourceResolverImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/sourceresolve/src/java/org/apache/excalibur/source/impl/SourceResolverImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- SourceResolverImpl.java	6 Jul 2002 03:55:06 -0000	1.10
  +++ SourceResolverImpl.java	9 Aug 2002 05:30:02 -0000	1.11
  @@ -12,7 +12,6 @@
   import java.net.MalformedURLException;
   import java.net.URL;
   import java.util.Map;
  -import org.apache.avalon.excalibur.pool.Recyclable;
   import org.apache.avalon.framework.activity.Disposable;
   import org.apache.avalon.framework.component.ComponentException;
   import org.apache.avalon.framework.component.ComponentManager;
  @@ -27,6 +26,7 @@
   import org.apache.avalon.framework.parameters.Parameterizable;
   import org.apache.avalon.framework.parameters.Parameters;
   import org.apache.avalon.framework.thread.ThreadSafe;
  +import org.apache.excalibur.source.Recyclable;
   import org.apache.excalibur.source.Source;
   import org.apache.excalibur.source.SourceException;
   import org.apache.excalibur.source.SourceFactory;
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>