If I have a network request with `replay(1).autoCo...
# rx
f
If I have a network request with
replay(1).autoConnect()
and the stream errs, what is the best way to not cache that error? What I would like is basically to restart the stream.
p
retry()?
f
But I don't want to retry indefinitely, I would like to retry when another subscriber connects.
u
maybe refCount? it should resub the source on 1st (re)subscriber
f
Thanks, I'll think about that.