|
|
|
@ -17,14 +17,14 @@
|
|
|
|
|
<!-- $Id$ --> |
|
|
|
|
<html> |
|
|
|
|
<head> |
|
|
|
|
<title>Overview of the org.apache.commons.pool2 component</title> |
|
|
|
|
<title>Overview of the com.fr.third.org.apache.commons.pool2 component</title> |
|
|
|
|
</head> |
|
|
|
|
<body> |
|
|
|
|
<p> |
|
|
|
|
Generic Object pooling API with several implementations. |
|
|
|
|
</p> |
|
|
|
|
<p> |
|
|
|
|
The <code>org.apache.commons.pool2</code> package defines a simple |
|
|
|
|
The <code>com.fr.third.org.apache.commons.pool2</code> package defines a simple |
|
|
|
|
interface for a pool of object instances, and a handful of base |
|
|
|
|
classes that may be useful when creating pool implementations. |
|
|
|
|
The API supports pooling of unique objects which can be requested |
|
|
|
@ -33,17 +33,17 @@
|
|
|
|
|
<p> |
|
|
|
|
The <code>org.apache.commons.pool2.impl</code> package contains |
|
|
|
|
several pool implementations. |
|
|
|
|
{@link org.apache.commons.pool2.impl.GenericObjectPool |
|
|
|
|
{@link com.fr.third.org.apache.commons.pool2.impl.GenericObjectPool |
|
|
|
|
GenericObjectPool} has many configuration options and can support |
|
|
|
|
a limited set of objects such as would be useful in a database |
|
|
|
|
connection pool. |
|
|
|
|
{@link org.apache.commons.pool2.impl.SoftReferenceObjectPool |
|
|
|
|
{@link com.fr.third.org.apache.commons.pool2.impl.SoftReferenceObjectPool |
|
|
|
|
SoftReferenceObjectPool} has no limit on the number of objects in the |
|
|
|
|
pool, but the garbage collector can remove idle objects from the pool |
|
|
|
|
as needed. There is also a keyed version of |
|
|
|
|
{@link org.apache.commons.pool2.impl.GenericObjectPool |
|
|
|
|
{@link com.fr.third.org.apache.commons.pool2.impl.GenericObjectPool |
|
|
|
|
GenericObjectPool}, |
|
|
|
|
{@link org.apache.commons.pool2.impl.GenericKeyedObjectPool |
|
|
|
|
{@link com.fr.third.org.apache.commons.pool2.impl.GenericKeyedObjectPool |
|
|
|
|
GenericKeyedObjectPool} |
|
|
|
|
</p> |
|
|
|
|
</body> |
|
|
|
|