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.CursorGenericKeyedObjectPool. _evictionCursorEviction cursor (over instances within-key)private CursorableLinkedList.CursorGenericObjectPool. _evictionCursorEviction cursor - keeps track of idle object evictor positionprivate CursorableLinkedList.CursorGenericKeyedObjectPool. _evictionKeyCursorEviction 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. _cursorsA list of the currentlyCursorableLinkedList.Cursors currently open in this list.Methods in org.apache.commons.pool.impl that return CursorableLinkedList.Cursor Modifier and Type Method Description CursorableLinkedList.CursorCursorableLinkedList. cursor()Returns aListIteratorfor iterating through the elements of this list.CursorableLinkedList.CursorCursorableLinkedList. cursor(int i)Returns aListIteratorfor 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 voidCursorableLinkedList. registerCursor(CursorableLinkedList.Cursor cur)Registers aCursorableLinkedList.Cursorto be notified of changes to this list.protected voidCursorableLinkedList. unregisterCursor(CursorableLinkedList.Cursor cur)Removes aCursorableLinkedList.Cursorfrom the set of cursors to be notified of changes to this list.
-