Class ConcurrentSkipListIntObjMultimap.Node<V>
java.lang.Object
io.netty.util.concurrent.ConcurrentSkipListIntObjMultimap.Node<V>
- Enclosing class:
ConcurrentSkipListIntObjMultimap<V>
Nodes hold keys and values, and are singly linked in sorted
order, possibly with some intervening marker nodes. The list is
headed by a header node accessible as head.node. Headers and
marker nodes have null keys. The val field (but currently not
the key field) is nulled out upon deletion.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
key
final int key -
val
-
next
-
-
Constructor Details
-
Node
Node(int key, V value, ConcurrentSkipListIntObjMultimap.Node<V> next)
-