Pools.SimplePool
public
static
class
Pools.SimplePool
extends Object
implements
Pool<T>
java.lang.Object
|
↳ |
androidx.core.util.Pools.SimplePool<T>
|
Simple (non-synchronized) pool of objects.
Summary
Public constructors |
SimplePool(int maxPoolSize)
Creates a new instance.
|
Public methods |
T
|
acquire()
|
boolean
|
release(T instance)
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
SimplePool
public SimplePool (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 instance)
Release an instance to the pool.
Parameters |
instance |
T : The instance to release. |
Returns |
boolean |
Whether the instance was put in the pool. |