Package org.apache.abdera.protocol.util
Class PoolManager<T>
- java.lang.Object
-
- org.apache.abdera.protocol.util.PoolManager<T>
-
- All Implemented Interfaces:
ItemManager<T>
- Direct Known Subclasses:
AbstractItemManager
@Deprecated public abstract class PoolManager<T> extends Object implements ItemManager<T>
Deprecated.Legacy AEM 6.x API.Implements a simple pool manager. By default, an upper limit to the pool is set at 25 entries. New items can always be created, but if more than 25 entries are released back to the pool, the extras are discarded. Items added to the stack should never maintain any kind of state as it is entirely possible that different threads will be grabbing items from the pool
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidrelease(T t)Deprecated.Release an item-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.abdera.protocol.ItemManager
get
-
-
-
-
Method Detail
-
release
public void release(T t)
Deprecated.Description copied from interface:ItemManagerRelease an item- Specified by:
releasein interfaceItemManager<T>
-
-