RXJS Observable – How to call next from outside of the Observable’s constructor
You should create a Subject for that this.myObservable$ = new Subject(); And then you can call at any point: this.myObservable$.next(…); Or use subscribe: this.myObservable$.subscribe(…)