Class FlowableCache.Node<T>

java.lang.Object
io.reactivex.rxjava3.internal.operators.flowable.FlowableCache.Node<T>
Type Parameters:
T - the element type
Enclosing class:
FlowableCache<T>

static final class FlowableCache.Node<T> extends Object
Represents a segment of the cached item list as part of a linked-node-list structure.
  • Field Details

    • values

      final T[] values
      The array of values held by this node.
    • next

      volatile FlowableCache.Node<T> next
      The next node if not null.
  • Constructor Details

    • Node

      Node(int capacityHint)