I created an observable, which will fire 3 seconds after the last change is made, and calls the publishChange
of the service. It works, but I would like to create a doImmediateChange
function, which calls publishChange
immediately and stops the debounced observable. How is that possible?
My component:
class MyComponent {
private updateSubject = new Subject<string>();
ngOnInit() {
this.updateSubject.pipe(
debounceTime(3000),
distinctUntilChanged()
).subscribe(val => {
this.srv.publishChange(val);
});
}
doChange(val: string) {
this.updateSubject.next(val);
}
doImmediateChange(val: string) {
// Stop the current updateSubject if debounce is in progress and call publish immediately
// ??
this.srv.publishChange(val);
}
}
from How is it possible to stop a debounced Rxjs Observable?
No comments:
Post a Comment