ExhaustMapOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
exhaustMap<
R> (Map1< T, Observable< project, {int concurrent = 1}) → Observable<R> >R> -
Available on Observable<
Emits and completes values from a higher-order Observable retrieved by projecting the values of the source to higher-order Observables. Subscribes to at mostT> , provided by the ExhaustMapOperator extensionconcurrent
sources, drops observables exceeding this threshold. -
exhaustMapTo<
R> (Observable< R> observable, {int concurrent = 1}) → Observable<R> -
Available on Observable<
Emits and completes values from single higher-order Observable. Subscribes to at mostT> , provided by the ExhaustMapOperator extensionconcurrent
sources, drops observables exceeding this threshold.