Uses of Class
org.apache.commons.pool2.impl.PooledSoftReference
-
Packages that use PooledSoftReference Package Description org.apache.commons.pool2.impl Object pooling API implementations. -
-
Uses of PooledSoftReference in org.apache.commons.pool2.impl
Fields in org.apache.commons.pool2.impl with type parameters of type PooledSoftReference Modifier and Type Field Description private java.util.ArrayList<PooledSoftReference<T>>
SoftReferenceObjectPool. allReferences
All references - checked out or waiting to be borrowed.private LinkedBlockingDeque<PooledSoftReference<T>>
SoftReferenceObjectPool. idleReferences
Idle references - waiting to be borrowedMethods in org.apache.commons.pool2.impl that return PooledSoftReference Modifier and Type Method Description private PooledSoftReference<T>
SoftReferenceObjectPool. findReference(T obj)
Find the PooledSoftReference in allReferences that points to obj.Methods in org.apache.commons.pool2.impl with parameters of type PooledSoftReference Modifier and Type Method Description private void
SoftReferenceObjectPool. destroy(PooledSoftReference<T> toDestroy)
Destroy aPooledSoftReference
and remove it from the idle and all references pools.Method parameters in org.apache.commons.pool2.impl with type arguments of type PooledSoftReference Modifier and Type Method Description private void
SoftReferenceObjectPool. removeClearedReferences(java.util.Iterator<PooledSoftReference<T>> iterator)
Clears cleared references from iterator's collection
-