Pools.SynchronizedPool
public
static
class
Pools.SynchronizedPool
extends SimplePool<T>
Synchronized) pool of objects.
Summary
Public methods |
T
|
acquire()
|
boolean
|
release(T element)
Release an instance to the pool.
|
Inherited methods |
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
|
Public constructors
SynchronizedPool
public SynchronizedPool (int maxPoolSize)
Creates a new instance.
Parameters |
maxPoolSize |
int : The max pool size. |
Throws |
IllegalArgumentException |
If the max pool size is less than zero.
|
Public methods
acquire
public T acquire ()
release
public boolean release (T element)
Release an instance to the pool.
Parameters |
element |
T : The instance to release. |
Returns |
boolean |
Whether the instance was put in the pool. |