Interface Node

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