Created
December 28, 2020 07:00
-
-
Save YonathanMeguira/0a37b4f05374f2df501e8fdbfc85d660 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
const keepListening$ = new BehaviorSubject<boolean>(true); | |
// do whatever with your operator | |
myOperator$.pipe(takeUntil(keepListening$)).subscribe(gotResponse => { | |
// do whatever | |
if (gotResponse) { | |
keepListening$.next(false); | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment