public interface Pools.Pool<T>
Interface for managing a pool of objects.
abstract T
acquire()
abstract boolean
release(@NonNull() T instance)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
@Nullable() abstract T acquire()
abstract boolean release(@NonNull() T instance)
Release an instance to the pool.
instance