Package org.jctools.queues.intrusive
Interface Node
-
- All Known Implementing Classes:
NodeImpl
public interface Node
Intrusive queue nodes are required to implement this interface.- See Also:
for a base implementation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Node
getNext()
void
setNext(Node next)
Stores a pointer to the next node in the linked queue structure.
-
-
-
Method Detail
-
setNext
void setNext(Node next)
Stores a pointer to the next node in the linked queue structure. This corresponds to mpscq_node_t.next in the 1024cores post Intrusive MPSC node-based queue. Note the volatile semantics of the stores in the algorithm.
-
getNext
Node getNext()
-
-