switchMapTo
signature: switchMapTo(innerObservable: Observable, resultSelector: function(outerValue, innerValue, outerIndex, innerIndex): any): Observable
switchMapTo(innerObservable: Observable, resultSelector: function(outerValue, innerValue, outerIndex, innerIndex): any): Observable
Map to same inner observable, complete previous inner observable.
💡 If you need to consider the emitted value from the source, try switchMap
!
Examples
Example 1: Restart countdown on click, until countdown completes one time
( StackBlitz )
Additional Resources
switchMapTo 📰 - Official docs
📁 Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/switchMapTo.ts
Last updated