Uses of Class
org.apache.commons.pool.impl.CursorableLinkedList.Cursor
-
Packages that use CursorableLinkedList.Cursor Package Description org.apache.commons.pool.impl Object pooling API implementations. -
-
Uses of CursorableLinkedList.Cursor in org.apache.commons.pool.impl
Fields in org.apache.commons.pool.impl declared as CursorableLinkedList.Cursor Modifier and Type Field Description private CursorableLinkedList.Cursor
GenericKeyedObjectPool. _evictionCursor
Eviction cursor (over instances within-key)private CursorableLinkedList.Cursor
GenericObjectPool. _evictionCursor
Eviction cursor - keeps track of idle object evictor positionprivate CursorableLinkedList.Cursor
GenericKeyedObjectPool. _evictionKeyCursor
Eviction cursor (over keys)Fields in org.apache.commons.pool.impl with type parameters of type CursorableLinkedList.Cursor Modifier and Type Field Description protected java.util.List<java.lang.ref.WeakReference<CursorableLinkedList.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.Cursor Modifier and Type Method Description CursorableLinkedList.Cursor
CursorableLinkedList. cursor()
Returns aListIterator
for iterating through the elements of this list.CursorableLinkedList.Cursor
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.Cursor Modifier and Type Method Description protected void
CursorableLinkedList. registerCursor(CursorableLinkedList.Cursor cur)
Registers aCursorableLinkedList.Cursor
to be notified of changes to this list.protected void
CursorableLinkedList. unregisterCursor(CursorableLinkedList.Cursor cur)
Removes aCursorableLinkedList.Cursor
from the set of cursors to be notified of changes to this list.
-