mergeMap
function
stable
Projects each source value to an Observable which is merged in the output Observable.
mergeMap<T, R, O extends ObservableInput<any>>(project: (value: T, index: number) => O, resultSelector?: number | ((outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R), concurrent: number = Infinity): OperatorFunction<T, ObservedValueOf<O> | R>
Parameters
project | A function that, when applied to an item emitted by the source Observable, returns an Observable. |
resultSelector | Optional. Default is Type: |
concurrent | Optional. Default is Maximum number of input Observables being subscribed to concurrently. |
Returns
OperatorFunction<T, ObservedValueOf<O> | R>
: A function that returns an Observable that emits the result of applying the projection function (and the optional deprecated resultSelector
) to each item emitted by the source Observable and merging the results of the Observables obtained from this transformation.
Description
Maps each value to an Observable, then flattens all of these inner Observables using mergeAll
.
Returns an Observable that emits items based on applying a function that you supply to each item emitted by the source Observable, where that function returns an Observable, and then merging those resulting Observables and emitting the results of this merger.
Example
Map and flatten each letter to an Observable ticking every 1 second
import { of, interval } from 'rxjs'; import { mergeMap, map } from 'rxjs/operators'; const letters = of('a', 'b', 'c'); const result = letters.pipe( mergeMap(x => interval(1000).pipe(map(i => x+i))), ); result.subscribe(x => console.log(x)); // Results in the following: // a0 // b0 // c0 // a1 // b1 // c1 // continues to list a,b,c with respective ascending integers
Overloads
mergeMap(project: (value: T, index: number) => O, concurrent?: number): OperatorFunction<T, ObservedValueOf<O>>
Parameters
project | Type: |
concurrent | Optional. Default is Type: |
Returns
OperatorFunction<T, ObservedValueOf<O>>
mergeMap(project: (value: T, index: number) => O, resultSelector: undefined, concurrent?: number): OperatorFunction<T, ObservedValueOf<O>>
Deprecation Notes
The resultSelector
parameter will be removed in v8. Use an inner map
instead. Details: https://rxjs.dev/deprecations/resultSelector
Parameters
project | Type: |
resultSelector | Type: |
concurrent | Optional. Default is Type: |
Returns
OperatorFunction<T, ObservedValueOf<O>>
mergeMap(project: (value: T, index: number) => O, resultSelector: (outerValue: T, innerValue: ObservedValueOf<O>, outerIndex: number, innerIndex: number) => R, concurrent?: number): OperatorFunction<T, R>
Deprecation Notes
The resultSelector
parameter will be removed in v8. Use an inner map
instead. Details: https://rxjs.dev/deprecations/resultSelector
Parameters
project | Type: |
resultSelector | Type: |
concurrent | Optional. Default is Type: |
Returns
OperatorFunction<T, R>
See Also
© 2015–2021 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors.
Code licensed under an Apache-2.0 License. Documentation licensed under CC BY 4.0.
https://rxjs.dev/api/operators/mergeMap