|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use PoolableObjectFactory | |
|---|---|
| com.cafesoft.core.pool | Provides classes for object pooling. |
| Uses of PoolableObjectFactory in com.cafesoft.core.pool |
|---|
| Classes in com.cafesoft.core.pool that implement PoolableObjectFactory | |
|---|---|
class |
DefaultPoolableObjectFactory
The DefaultPoolableObjectFactory provides a default implementation of the PoolableObjectFactory. |
| Methods in com.cafesoft.core.pool that return PoolableObjectFactory | |
|---|---|
PoolableObjectFactory |
DefaultObjectPool.getPoolableObjectFactory()
Get the PoolableObjectFactory that the ObjectPool is currently using. |
PoolableObjectFactory |
ObjectPool.getPoolableObjectFactory()
Get the PoolableObjectFactory that the ObjectPool is currently using. |
| Methods in com.cafesoft.core.pool with parameters of type PoolableObjectFactory | |
|---|---|
void |
DefaultObjectPool.setPoolableObjectFactory(PoolableObjectFactory poolableObjectFactory)
Set the PoolableObjectFactory that the ObjectPool will use. |
void |
ObjectPool.setPoolableObjectFactory(PoolableObjectFactory poolableObjectFactory)
Set the PoolableObjectFactory that the ObjectPool will use. |
| Constructors in com.cafesoft.core.pool with parameters of type PoolableObjectFactory | |
|---|---|
DefaultObjectPool(PoolableObjectFactory objectFactory)
Create a new DefaultObjectPool Creates an object pool with no minimum, no maximum, and no expiration time. |
|
DefaultObjectPool(PoolableObjectFactory objectFactory,
int minimum)
Create a new DefaultObjectPool. |
|
DefaultObjectPool(PoolableObjectFactory objectFactory,
int minimum,
int maximum)
Create a new DefaultObjectPool. |
|
DefaultObjectPool(PoolableObjectFactory objectFactory,
int minimum,
int maximum,
long expiration)
Create a new DefaultObjectPool Creates an object pool with the specified minimum, specified maximum, and the specified expiration time. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||