I'm trying to create a continuous stream of items where I'd always get the last one (aka. cache) using the BehaviorSubject (or ReplySubject) but whenever the api call stream terminates, so does my main stream. How can I prevent that?
One way would be linking them manually and ignoring the onComplete but then I loose the main feature of the Subject...
Let me explain with an example. Here I only get the result the first time.