Uses of Class
io.netty.util.concurrent.ConcurrentSkipListIntObjMultimap.Node
Packages that use ConcurrentSkipListIntObjMultimap.Node
-
Uses of ConcurrentSkipListIntObjMultimap.Node in io.netty.util.concurrent
Fields in io.netty.util.concurrent declared as ConcurrentSkipListIntObjMultimap.NodeModifier and TypeFieldDescription(package private) ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.Iter.lastReturnedthe last node returned by next()(package private) ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.Iter.nextthe next node to return from next();(package private) ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.Node.next(package private) final ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.Index.nodeFields in io.netty.util.concurrent with type parameters of type ConcurrentSkipListIntObjMultimap.NodeModifier and TypeFieldDescriptionprivate static final AtomicReferenceFieldUpdater<ConcurrentSkipListIntObjMultimap.Node<?>, ConcurrentSkipListIntObjMultimap.Node<?>> ConcurrentSkipListIntObjMultimap.NEXTprivate static final AtomicReferenceFieldUpdater<ConcurrentSkipListIntObjMultimap.Node<?>, ConcurrentSkipListIntObjMultimap.Node<?>> ConcurrentSkipListIntObjMultimap.NEXTprivate static final AtomicReferenceFieldUpdater<ConcurrentSkipListIntObjMultimap.Node<?>, Object> ConcurrentSkipListIntObjMultimap.VALMethods in io.netty.util.concurrent that return ConcurrentSkipListIntObjMultimap.NodeModifier and TypeMethodDescription(package private) final ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.baseHead()Returns the header for base node list, or null if uninitialized(package private) final ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.findFirst()Gets first valid node, unlinking deleted nodes if encountered.(package private) final ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.findLast()Specialized version of find to get last valid node.(package private) final ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.findNear(int key, int rel) Utility for ceiling, floor, lower, higher methods.private ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.findNode(int key) Returns node holding key or null if no such, clearing out any deleted nodes seen along the way.private ConcurrentSkipListIntObjMultimap.Node<V> ConcurrentSkipListIntObjMultimap.findPredecessor(int key) Returns an index node with key strictly less than given key.Methods in io.netty.util.concurrent with parameters of type ConcurrentSkipListIntObjMultimap.NodeModifier and TypeMethodDescription(package private) final voidConcurrentSkipListIntObjMultimap.Iter.advance(ConcurrentSkipListIntObjMultimap.Node<V> b) Advances next to higher entry.(package private) static <V> voidConcurrentSkipListIntObjMultimap.unlinkNode(ConcurrentSkipListIntObjMultimap.Node<V> b, ConcurrentSkipListIntObjMultimap.Node<V> n, int noKey) Tries to unlink deleted node n from predecessor b (if both exist), by first splicing in a marker if not already present.Constructors in io.netty.util.concurrent with parameters of type ConcurrentSkipListIntObjMultimap.NodeModifierConstructorDescription(package private)Index(ConcurrentSkipListIntObjMultimap.Node<V> node, ConcurrentSkipListIntObjMultimap.Index<V> down, ConcurrentSkipListIntObjMultimap.Index<V> right) (package private)Node(int key, V value, ConcurrentSkipListIntObjMultimap.Node<V> next)