com.boylesoftware.cb2.util.pool
Class PooledObjectFactoryAdapter

java.lang.Object
  extended bycom.boylesoftware.cb2.util.pool.PooledObjectFactoryAdapter
All Implemented Interfaces:
PooledObjectFactory
Direct Known Subclasses:
PooledThreadFactory, SimplePooledObjectFactory

public abstract class PooledObjectFactoryAdapter
extends java.lang.Object
implements PooledObjectFactory

Convenience adapter for PooledObjectFactory interface. This abstract class contains stub implementations of some of the interface methods, so when your factory implementation extends this adapter it does not have to implement all the methods.

Version:
$Id: PooledObjectFactoryAdapter.java,v 1.1 2003/07/23 22:18:08 levahim Exp $
Author:
Lev Himmelfarb

Field Summary
protected  AdaptiveObjectPool pool
          Reference to the pool set by the setPool method.
 
Constructor Summary
PooledObjectFactoryAdapter()
           
 
Method Summary
 void destroyObject(java.lang.Object o)
          Interface method implementation, does nothing.
 void resetObject(java.lang.Object o)
          Interface method implementation, does nothing.
 void setPool(AdaptiveObjectPool pool)
          Interface method implementation, sets the internal pool member variable.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.boylesoftware.cb2.util.pool.PooledObjectFactory
createObject
 

Field Detail

pool

protected AdaptiveObjectPool pool
Reference to the pool set by the setPool method.

Constructor Detail

PooledObjectFactoryAdapter

public PooledObjectFactoryAdapter()
Method Detail

resetObject

public void resetObject(java.lang.Object o)
Interface method implementation, does nothing.

Specified by:
resetObject in interface PooledObjectFactory
Parameters:
o - the object being returned to the pool after use.

destroyObject

public void destroyObject(java.lang.Object o)
Interface method implementation, does nothing.

Specified by:
destroyObject in interface PooledObjectFactory
Parameters:
o - the object being removed from the pool.

setPool

public void setPool(AdaptiveObjectPool pool)
Interface method implementation, sets the internal pool member variable.

Specified by:
setPool in interface PooledObjectFactory
Parameters:
pool - reference to the pool instance, which is going to use this factory.


Copyright © 2002,2003,2004 - Boyle Software, Inc.