java.lang.Object
io.reactivex.rxjava3.internal.operators.flowable.BlockingFlowableMostRecent<T>
- Type Parameters:
T - the value type
- All Implemented Interfaces:
Iterable<T>
public final class BlockingFlowableMostRecent<T>
extends Object
implements Iterable<T>
Returns an Iterable that always returns the item most recently emitted by an Observable, or a
seed value if no item has yet been emitted.

-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
BlockingFlowableMostRecent
public BlockingFlowableMostRecent(Flowable<T> source,
T initialValue)
-