DEV Community

Discussion on: RxJS Subjects in Depth

 
gc_psk profile image
Giancarlo Buomprisco

The only way for that is to create a new Observable using new Observable(Observer) - where you define the source inside the observable and you push values/errors/completion with Observer.next, error and complete. Hope this helps!