Class OperatorReplay.Node

All Implemented Interfaces:
Serializable
Enclosing class:
OperatorReplay<T>

static final class OperatorReplay.Node extends AtomicReference<OperatorReplay.Node>
Represents a node in a bounded replay buffer's linked list.
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • value

      final Object value
      The contained value.
    • index

      final long index
      The absolute index of the value.
  • Constructor Details

    • Node

      public Node(Object value, long index)