python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do I obtain the value of another observable, without it affecting the parent stream's return value
I want to make an http request, without affecting the value of the parent stream:
const mockHttpCall = () => of('http-result');
of('result1')
.pipe(
switchMap(() =>
mockHttpCall().p...
wlf
Votes: 0
Answers: 1
Why would pipe-> finalize not be called for an observable when the observable completes, but a callback in subscribe would be called?
I am working on code that needs to take some action when an observable completes. I was originally using pipe(finalize(() => {})), but I was finding that when the observable completes, the finalize...

WillOw
Votes: 0
Answers: 1
How to avoid last piped ErrorObservable
I need to re-try an action for 5 times, then, if it has success, return his value, but if all 5 attempets fail, i need to throw an error.
I wrote this following, but it does not work because always en...
Andrea Scarafoni
Votes: 0
Answers: 2
NestJS WebSocket
I use angular in the front end where I am learning to use rxjs-websockets. In backend I use nestjs, where i want to learn to use websockets. But every tutorial i see, they are explaning socket.io whic...
Subham
Votes: 0
Answers: 1