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