In this case if your request fails (throws an exce...
# rx
m
In this case if your request fails (throws an exception) then the whole stream will be terminated and you will have to subscribe again. You could use
flatMap
and return a new observable which can also do
onErrorResume..
. https://medium.com/@jagsaund/5-not-so-obvious-things-about-rxjava-c388bd19efbc look at point 4 in this post.