Class OperatorReplay.Node

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    OperatorReplay<T>

    static final class OperatorReplay.Node
    extends java.util.concurrent.atomic.AtomicReference<OperatorReplay.Node>
    Represents a node in a bounded replay buffer's linked list.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) long index
      The absolute index of the value.
      private static long serialVersionUID  
      (package private) java.lang.Object value
      The contained value.
    • Constructor Summary

      Constructors 
      Constructor Description
      Node​(java.lang.Object value, long index)  
    • Method Summary

      • Methods inherited from class java.util.concurrent.atomic.AtomicReference

        accumulateAndGet, compareAndExchange, compareAndExchangeAcquire, compareAndExchangeRelease, compareAndSet, get, getAcquire, getAndAccumulate, getAndSet, getAndUpdate, getOpaque, getPlain, lazySet, set, setOpaque, setPlain, setRelease, toString, updateAndGet, weakCompareAndSet, weakCompareAndSetAcquire, weakCompareAndSetPlain, weakCompareAndSetRelease, weakCompareAndSetVolatile
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • value

        final java.lang.Object value
        The contained value.
      • index

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

      • Node

        public Node​(java.lang.Object value,
                    long index)