Class NodeImpl

    • Constructor Detail

      • NodeImpl

        public NodeImpl()
    • Method Detail

      • setNext

        public void setNext​(Node next)
        Description copied from interface: Node
        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.
        Specified by:
        setNext in interface Node
      • getNext

        public Node getNext()
        Specified by:
        getNext in interface Node