Interface Node

All Known Implementing Classes:
NodeImpl

public interface Node
Intrusive queue nodes are required to implement this interface.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    setNext(Node next)
    Stores a pointer to the next node in the linked queue structure.
  • Method Details

    • 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()