exhaustMapTo<R> method
Emits and completes values from single higher-order Observable.
Subscribes to at most concurrent
sources, drops observables exceeding
this threshold.
Implementation
Observable<R> exhaustMapTo<R>(
Observable<R> observable, {
int concurrent = 1,
}) => exhaustMap<R>(constantFunction1(observable), concurrent: concurrent);