Class BlockingObservableLatest<T>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.operators.observable.BlockingObservableLatest<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
java.lang.Iterable<T>
public final class BlockingObservableLatest<T> extends java.lang.Object implements java.lang.Iterable<T>
Wait for and iterate over the latest values of the source observable. If the source works faster than the iterator, values may be skipped, but not theonError
oronComplete
events.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
BlockingObservableLatest.BlockingObservableLatestIterator<T>
-
Field Summary
Fields Modifier and Type Field Description (package private) ObservableSource<T>
source
-
Constructor Summary
Constructors Constructor Description BlockingObservableLatest(ObservableSource<T> source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Iterator<T>
iterator()
-
-
-
Field Detail
-
source
final ObservableSource<T> source
-
-
Constructor Detail
-
BlockingObservableLatest
public BlockingObservableLatest(ObservableSource<T> source)
-
-