|
15 | 15 | limitations under the License. |
16 | 16 | --> |
17 | 17 | <html> |
18 | | - <head> |
19 | | - <title>Overview of the org.apache.commons.pool3 component</title> |
20 | | - </head> |
21 | | - <body> |
22 | | - <p> |
23 | | - Generic Object pooling API with several implementations. |
24 | | - </p> |
25 | | - <p> |
26 | | - The <code>org.apache.commons.pool3</code> package defines a simple |
27 | | - interface for a pool of object instances, and a handful of base |
28 | | - classes that may be useful when creating pool implementations. |
29 | | - The API supports pooling of unique objects which can be requested |
30 | | - via a key as well as pools where all objects are equivalent. |
31 | | - </p> |
32 | | - <p> |
33 | | - The <code>org.apache.commons.pool3.impl</code> package contains |
34 | | - several pool implementations. |
35 | | - {@link org.apache.commons.pool3.impl.GenericObjectPool |
36 | | - GenericObjectPool} has many configuration options and can support |
37 | | - a limited set of objects such as would be useful in a database |
38 | | - connection pool. |
39 | | - {@link org.apache.commons.pool3.impl.SoftReferenceObjectPool |
40 | | - SoftReferenceObjectPool} has no limit on the number of objects in the |
41 | | - pool, but the garbage collector can remove idle objects from the pool |
42 | | - as needed. There is also a keyed version of |
43 | | - {@link org.apache.commons.pool3.impl.GenericObjectPool |
44 | | - GenericObjectPool}, |
45 | | - {@link org.apache.commons.pool3.impl.GenericKeyedObjectPool |
46 | | - GenericKeyedObjectPool} |
47 | | - </p> |
48 | | - </body> |
| 18 | +<head> |
| 19 | +<title>Overview of the org.apache.commons.pool3 component</title> |
| 20 | +</head> |
| 21 | +<body> |
| 22 | + <a href="https://commons.apache.org/pool"> <img src="org/apache/commons/pool3/doc-files/logo.png" alt="Apache Commons Pool"> |
| 23 | + </a> |
| 24 | + <p>Generic Object pooling API with several implementations.</p> |
| 25 | + <p> |
| 26 | + The |
| 27 | + <code>org.apache.commons.pool3</code> |
| 28 | + 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 |
| 29 | + API supports pooling of unique objects which can be requested via a key as well as pools where all objects are equivalent. |
| 30 | + </p> |
| 31 | + <p> |
| 32 | + The |
| 33 | + <code>org.apache.commons.pool3.impl</code> |
| 34 | + package contains several pool implementations. {@link org.apache.commons.pool3.impl.GenericObjectPool GenericObjectPool} has many configuration options and |
| 35 | + can support a limited set of objects such as would be useful in a database connection pool. {@link org.apache.commons.pool3.impl.SoftReferenceObjectPool |
| 36 | + 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 |
| 37 | + is also a keyed version of {@link org.apache.commons.pool3.impl.GenericObjectPool GenericObjectPool}, {@link |
| 38 | + org.apache.commons.pool3.impl.GenericKeyedObjectPool GenericKeyedObjectPool} |
| 39 | + </p> |
| 40 | +</body> |
49 | 41 | </html> |
0 commit comments