Package rx.internal.operators
Class OperatorReplay.Node
- java.lang.Object
-
- java.util.concurrent.atomic.AtomicReference<OperatorReplay.Node>
-
- rx.internal.operators.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
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
value
final java.lang.Object value
The contained value.
-
index
final long index
The absolute index of the value.
-
-