Properties
Readonly onComplete
onComplete: Observable<any> = ...
Protected Readonly onCompleteSubject
onCompleteSubject: Subject<any> = ...
Readonly onError
onError: Observable<T> = ...
Protected Readonly onErrorSubject
onErrorSubject: Subject<T> = ...
Readonly onNext
onNext: Observable<T> = ...
Protected Readonly onNextSubject
onNextSubject: Subject<T> = ...
Special flavor of an Observable that is undying, in that when the source completes or errors, this instance's stream will persist and wait for a new source to be set.
This allows us to hot-swap input and output streams without needing to manually recover other subscribers to this instance.