Created
October 13, 2020 17:04
-
-
Save LironHazan/044b126dec1760e2f60be98df647126c to your computer and use it in GitHub Desktop.
Revisions
-
LironHazan created this gist
Oct 13, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ private myStream = new Subject(); private myStream$ = this.myStream.asObservable(); ngOnInit() { // Will only fire after 100 ms. this.myStream$ .pipe(auditTime(100)) .subscribe(e => console.log('will only fire after 100 miliseconds'); this.myStream.next(); // Fire it once setTimeout(() => {this.myStream.next();}, 10); // Fire it twice }