Interface IntrusiveSinglyLinkedQueue.Adapter<NODE_TYPE>
- Type Parameters:
NODE_TYPE
-
- Enclosing class:
- IntrusiveSinglyLinkedQueue<VALUE_TYPE>
public static interface IntrusiveSinglyLinkedQueue.Adapter<NODE_TYPE>
Adapter interface for nodes with intrusively-stored next nodes.
-
Method Summary
-
Method Details
-
getNext
Get the next node after the input node.- Parameters:
node
- The input node- Returns:
- The input node's next node
-
setNext
Set the input node's next node.- Parameters:
node
- The input nodeother
- The input node's new next node
-