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:
-
Method Summary
-
Method Details
-
setNext
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()
-