Skip to content

Instantly share code, notes, and snippets.

@njofce
Created February 16, 2020 12:03
Show Gist options
  • Select an option

  • Save njofce/2a3b58be9cc88f87d6a6055d1a57a830 to your computer and use it in GitHub Desktop.

Select an option

Save njofce/2a3b58be9cc88f87d6a6055d1a57a830 to your computer and use it in GitHub Desktop.
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