public abstract static class RecyclerPool.ConcurrentDequePoolBase<P extends RecyclerPool.WithPool<P>> extends RecyclerPool.StatefulImplBase<P>
RecyclerPool
implementation that uses
ConcurrentLinkedDeque
for recycling instances.
Pool is unbounded: see RecyclerPool
what this means.
RecyclerPool.BoundedPoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.ConcurrentDequePoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.LockFreePoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.NonRecyclingPoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.StatefulImplBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.ThreadLocalPoolBase<P extends RecyclerPool.WithPool<P>>, RecyclerPool.WithPool<P extends RecyclerPool.WithPool<P>>
Modifier and Type | Field and Description |
---|---|
protected Deque<P> |
pool |
_serialization, SERIALIZATION_NON_SHARED, SERIALIZATION_SHARED
Modifier | Constructor and Description |
---|---|
protected |
ConcurrentDequePoolBase(int serialization) |
Modifier and Type | Method and Description |
---|---|
P |
acquirePooled()
Method for sub-classes to implement for actual acquire logic; called
by
RecyclerPool.acquireAndLinkPooled() . |
void |
releasePooled(P pooled)
Method that should be called when previously acquired (see
RecyclerPool.acquireAndLinkPooled() )
pooled value that is no longer needed; this lets pool to take ownership
for possible reuse. |
_resolveToShared, createPooled
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
acquireAndLinkPooled
protected final transient Deque<P extends RecyclerPool.WithPool<P>> pool
public P acquirePooled()
RecyclerPool
RecyclerPool.acquireAndLinkPooled()
.public void releasePooled(P pooled)
RecyclerPool
RecyclerPool.acquireAndLinkPooled()
)
pooled value that is no longer needed; this lets pool to take ownership
for possible reuse.pooled
- Pooled instance to release back to poolCopyright © 2008–2023 FasterXML. All rights reserved.