Package | Description |
---|---|
com.tangosol.util |
Contains various generic utilities.
|
Modifier and Type | Class and Description |
---|---|
protected class |
SafeSortedMap.IndexNode
IndexNode represents the start node in the map's lattice representation
at a given index-level.
|
Modifier and Type | Field and Description |
---|---|
protected SafeSortedMap.SkipNode |
SafeSortedMap.SkipNode.m_nodeBelow
The SkipNode "below" this one in the node lattice.
|
protected SafeSortedMap.SkipNode |
SafeSortedMap.SkipNode.m_nodeNext
The SkipNode "below" this one in the node lattice.
|
Modifier and Type | Method and Description |
---|---|
protected SafeSortedMap.SkipNode |
SafeSortedMap.SkipNode.getBelow()
Return the node below this one in the skip-list.
|
protected SafeSortedMap.SkipNode |
SafeSortedMap.SkipNode.getNext()
Return the next node in this node-list.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
SafeSortedMap.SkipNode.casNext(SafeSortedMap.SkipNode nodeAssume,
SafeSortedMap.SkipNode nodeNext)
Atomically set the specified next SkipNode iff the current next node
matches the expected node.
|
protected void |
SafeSortedMap.SkipNode.setNext(SafeSortedMap.SkipNode nodeNext)
Set the next node in this node-list.
|
Constructor and Description |
---|
SkipNode(SafeSortedMap.SkipNode nodeBelow,
SafeSortedMap.EntryNode nodeEntry)
Construct a SkipNode according to the specified parameters.
|