rxjs-reactFunctionsuseObserveruseObserver CallableuseObserver<T>(source$: Observable<T>, observerOrNext: any): voidSubscribes the provided observer or next handler on source$ observable. This hook allows to do fine handling of the source observable.@exampleuseObserver(source$, (nextValue) => { logger.log(nextValue);});Type parametersTParameterssource$: Observable<T>an observableobserverOrNext: anyObserver or next handlerReturns void
Subscribes the provided observer or
next
handler onsource$
observable.This hook allows to do fine handling of the source observable.