|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.pool.BaseObjectPool
org.apache.commons.pool.impl.SoftReferenceObjectPool
public class SoftReferenceObjectPool
A SoftReference based
ObjectPool.
| Constructor Summary | |
|---|---|
SoftReferenceObjectPool()
|
|
SoftReferenceObjectPool(PoolableObjectFactory factory)
|
|
SoftReferenceObjectPool(PoolableObjectFactory factory,
int initSize)
|
|
| Method Summary | |
|---|---|
void |
addObject()
Create an object, and place it into the pool. |
Object |
borrowObject()
Obtain an instance from my pool. |
void |
clear()
Not supported in this base implementation. |
void |
close()
Close this pool, and free any resources associated with it. |
int |
getNumActive()
Not supported in this base implementation. |
int |
getNumIdle()
Returns an approximation not less than the of the number of idle instances in the pool. |
void |
invalidateObject(Object obj)
Invalidates an object from the pool By contract, obj MUST have been obtained using borrowObject
or a related method as defined in an implementation
or sub-interface. |
void |
returnObject(Object obj)
Return an instance to my pool. |
void |
setFactory(PoolableObjectFactory factory)
Not supported in this base implementation. |
| Methods inherited from class org.apache.commons.pool.BaseObjectPool |
|---|
assertOpen, isClosed |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SoftReferenceObjectPool()
public SoftReferenceObjectPool(PoolableObjectFactory factory)
public SoftReferenceObjectPool(PoolableObjectFactory factory,
int initSize)
throws Exception
Exception| Method Detail |
|---|
public Object borrowObject()
throws Exception
ObjectPoolreturnObject
or a related method as defined in an implementation
or sub-interface.
The behaviour of this method when the pool has been exhausted is not specified (although it may be specified by implementations).
borrowObject in interface ObjectPoolborrowObject in class BaseObjectPoolException
public void returnObject(Object obj)
throws Exception
ObjectPoolborrowObject
or a related method as defined in an implementation
or sub-interface.
returnObject in interface ObjectPoolreturnObject in class BaseObjectPoolobj - a borrowed instance to be returned.
Exception
public void invalidateObject(Object obj)
throws Exception
ObjectPoolborrowObject
or a related method as defined in an implementation
or sub-interface.
This method should be used when an object that has been borrowed
is determined (due to an exception or other problem) to be invalid.
If the connection should be validated before or after borrowing,
then the PoolableObjectFactory.validateObject(java.lang.Object) method should be
used instead.
invalidateObject in interface ObjectPoolinvalidateObject in class BaseObjectPoolobj - a borrowed instance to be returned.
Exception
public void addObject()
throws Exception
addObject in interface ObjectPooladdObject in class BaseObjectPoolExceptionpublic int getNumIdle()
getNumIdle in interface ObjectPoolgetNumIdle in class BaseObjectPoolpublic int getNumActive()
BaseObjectPool
getNumActive in interface ObjectPoolgetNumActive in class BaseObjectPoolpublic void clear()
BaseObjectPool
clear in interface ObjectPoolclear in class BaseObjectPool
public void close()
throws Exception
ObjectPool
close in interface ObjectPoolclose in class BaseObjectPoolException
public void setFactory(PoolableObjectFactory factory)
throws IllegalStateException
BaseObjectPool
setFactory in interface ObjectPoolsetFactory in class BaseObjectPoolfactory - the PoolableObjectFactory I use to create new instances.
IllegalStateException - when the factory cannot be set at this time
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||