Skip to content

Commit e4ddc54

Browse files
committed
Add logo
1 parent a7552be commit e4ddc54

File tree

3 files changed

+68
-31
lines changed

3 files changed

+68
-31
lines changed
Lines changed: 45 additions & 0 deletions
Loading
9.28 KB
Loading

src/main/javadoc/overview.html

Lines changed: 23 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,27 @@
1515
limitations under the License.
1616
-->
1717
<html>
18-
<head>
19-
<title>Overview of the org.apache.commons.pool2 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.pool2</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.pool2.impl</code> package contains
34-
several pool implementations.
35-
{@link org.apache.commons.pool2.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.pool2.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.pool2.impl.GenericObjectPool
44-
GenericObjectPool},
45-
{@link org.apache.commons.pool2.impl.GenericKeyedObjectPool
46-
GenericKeyedObjectPool}
47-
</p>
48-
</body>
18+
<head>
19+
<title>Overview of the org.apache.commons.pool2 component</title>
20+
</head>
21+
<body>
22+
<a href="https://commons.apache.org/pool"> <img src="org/apache/commons/pool2/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.pool2</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.pool2.impl</code>
34+
package contains several pool implementations. {@link org.apache.commons.pool2.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.pool2.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.pool2.impl.GenericObjectPool GenericObjectPool}, {@link
38+
org.apache.commons.pool2.impl.GenericKeyedObjectPool GenericKeyedObjectPool}
39+
</p>
40+
</body>
4941
</html>

0 commit comments

Comments
 (0)