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>
Represents a segment of the cached item list as
part of a linked-node-list structure.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) FlowableCache.Node
<T> The next node if not null.(package private) final T[]
The array of values held by this node. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
values
The array of values held by this node. -
next
The next node if not null.
-
-
Constructor Details
-
Node
Node(int capacityHint)
-