toObservable
Exposes the value of an Angular Signal
as an RxJS Observable
.
As it reflects a state, the observable will always emit the latest value upon subscription.
API
function toObservable<T>(
source: Signal<T>,
options?: ToObservableOptions | undefined,
): Observable<T>;
toObservable
Observable<T>
Exposes the value of an Angular Signal
as an RxJS Observable
.
As it reflects a state, the observable will always emit the latest value upon subscription.
The signal's value will be propagated into the Observable
's subscribers using an effect
.
toObservable
must be called in an injection context unless an injector is provided via options.
Signal<T>
Observable<T>
Description
Exposes the value of an Angular Signal
as an RxJS Observable
.
As it reflects a state, the observable will always emit the latest value upon subscription.
The signal's value will be propagated into the Observable
's subscribers using an effect
.
toObservable
must be called in an injection context unless an injector is provided via options.