Package io.netty.util.concurrent
Class ConcurrentSkipListIntObjMultimap.Node<V>
- java.lang.Object
-
- io.netty.util.concurrent.ConcurrentSkipListIntObjMultimap.Node<V>
-
- Enclosing class:
- ConcurrentSkipListIntObjMultimap<V>
static final class ConcurrentSkipListIntObjMultimap.Node<V> extends java.lang.ObjectNodes 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.
-
-
Constructor Summary
Constructors Constructor Description Node(int key, V value, ConcurrentSkipListIntObjMultimap.Node<V> next)
-
-
-
Field Detail
-
key
final int key
-
val
volatile V val
-
next
volatile ConcurrentSkipListIntObjMultimap.Node<V> next
-
-
Constructor Detail
-
Node
Node(int key, V value, ConcurrentSkipListIntObjMultimap.Node<V> next)
-
-