org.apache.turbine.util.pool
Interface ArrayCtorRecyclable

All Superinterfaces:
Recyclable

public interface ArrayCtorRecyclable
extends Recyclable

An interface for objects that can be pooled and recycled several times by different clients. This interface presents a recycle method that does not require introspection/reflection.

Version:
$Id: ArrayCtorRecyclable.java 534527 2007-05-02 16:10:59Z tv $
Author:
John McNally

Method Summary
 void recycle(java.lang.Object[] params)
          Recycles the object for a new client.
 
Methods inherited from interface org.apache.turbine.util.pool.Recyclable
dispose, isDisposed, recycle
 

Method Detail

recycle

public void recycle(java.lang.Object[] params)
Recycles the object for a new client. Objects implementing this interface must also provide a matching constructor. The recycle methods must call their super.



Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.