MergeMapOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
mergeMap<
R> (Map1< T, Observable< project, {int concurrent = maxInteger}) → Observable<R> >R> -
Available on Observable<
For each value of this Observable, transform that value to a higher-order observable with the providedT> , provided by the MergeMapOperator extensionproject
function and merge its emitted values. Subscribe to at mostconcurrent
sources. -
mergeMapTo<
R> (Observable< R> observable, {int concurrent = maxInteger}) → Observable<R> -
Available on Observable<
For each value of this Observable, merge all values from the single higher-orderT> , provided by the MergeMapOperator extensionobservable
. Subscribe to at mostconcurrent
sources.