Uses of Class
org.apache.commons.pool.impl.CursorableLinkedList.Cursor
Packages that use CursorableLinkedList.Cursor
-
Uses of CursorableLinkedList.Cursor in org.apache.commons.pool.impl
Fields in org.apache.commons.pool.impl declared as CursorableLinkedList.CursorModifier and TypeFieldDescriptionGenericKeyedObjectPool._evictionCursor
Eviction cursor (over instances within-key)GenericObjectPool._evictionCursor
Eviction cursor - keeps track of idle object evictor positionprivate CursorableLinkedList<K>.Cursor
GenericKeyedObjectPool._evictionKeyCursor
Eviction cursor (over keys)Fields in org.apache.commons.pool.impl with type parameters of type CursorableLinkedList.CursorModifier and TypeFieldDescriptionprotected List<WeakReference<CursorableLinkedList<E>.Cursor>>
CursorableLinkedList._cursors
A list of the currentlyCursorableLinkedList.Cursor
s currently open in this list.Methods in org.apache.commons.pool.impl that return CursorableLinkedList.CursorModifier and TypeMethodDescriptionCursorableLinkedList.cursor()
Returns aListIterator
for iterating through the elements of this list.CursorableLinkedList.cursor
(int i) Returns aListIterator
for iterating through the elements of this list, initialized such thatListIterator.next()
will return the element at the specified index (if any) andListIterator.previous()
will return the element immediately preceding it (if any).Methods in org.apache.commons.pool.impl with parameters of type CursorableLinkedList.CursorModifier and TypeMethodDescriptionprotected void
CursorableLinkedList.registerCursor
(CursorableLinkedList<E>.Cursor cur) Registers aCursorableLinkedList.Cursor
to be notified of changes to this list.protected void
CursorableLinkedList.unregisterCursor
(CursorableLinkedList<E>.Cursor cur) Removes aCursorableLinkedList.Cursor
from the set of cursors to be notified of changes to this list.