mergeMap / flatMap
signature: mergeMap(project: function: Observable, resultSelector: function: any, concurrent: number): Observable
mergeMap(project: function: Observable, resultSelector: function: any, concurrent: number): Observable
Map to observable, emit values.
💡 flatMap is an alias for mergeMap!
💡 If only one inner subscription should be active at a time, try switchMap
!
💡 If the order of emission and subscription of inner observables is important, try concatMap
!
Why use mergeMap
?
mergeMap
?This operator is best used when you wish to flatten an inner observable but want to manually control the number of inner subscriptions.
For instance, when using switchMap
each inner subscription is completed when the source emits, allowing only one active inner subscription. In contrast, mergeMap
allows for multiple inner subscriptions to be active at a time. Because of this, one of the most common use-case for mergeMap
is requests that should not be canceled, think writes rather than reads. Note that if order must be maintained concatMap
is a better option.
Be aware that because mergeMap
maintains multiple active inner subscriptions at once it's possible to create a memory leak through long-lived inner subscriptions. A basic example would be if you were mapping to an observable with an inner timer, or a stream of dom events. In these cases, if you still wish to utilize mergeMap
you may want to take advantage of another operator to manage the completion of the inner subscription, think take
or takeUntil
. You can also limit the number of active inner subscriptions at a time with the concurrent
parameter, seen in example 5.
Examples
Example 1: mergeMap simulating save of click locations
( StackBlitz )
Example 2: mergeMap with ajax observable
( StackBlitz )
Example 3: mergeMap with promise (could also use from to convert to observable)
( StackBlitz )
Example 4: mergeMap with resultSelector
( StackBlitz )
Example 5: mergeMap with concurrent value
( StackBlitz )
Related Recipes
Additional Resources
mergeMap 📰 - Official docs
mergeMap - In Depth Dev Reference
map vs flatMap 🎥 💵 - Ben Lesh
Async requests and responses in RxJS 🎥 💵 - André Staltz
Use RxJS mergeMap to map and merge higher order observables 🎥 💵 - André Staltz
Use RxJS mergeMap for fine grain custom behavior 🎥 💵 - André Staltz
Build your own mergeMap operator 🎥 - Kwinten Pisman
📁 Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/mergeMap.ts
Last updated