Class FlowableReplay.Node

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

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

      Fields 
      Modifier and Type Field Description
      (package private) long index  
      private static long serialVersionUID  
      (package private) java.lang.Object 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
      • index

        final long index
    • Constructor Detail

      • Node

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