Created
February 16, 2020 12:03
-
-
Save njofce/2a3b58be9cc88f87d6a6055d1a57a830 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| getControllableDataStream(): Observable<number> { | |
| return this._toggleObservable.pipe( | |
| filter(t => t == true), | |
| startWith(true), | |
| concatMap(() => this._dataObservable.pipe(takeUntil(this._toggleObservable))) | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment