I'm using subscription in Apollo with Rxjava2 as follow
Rx2Apollo.from(someApolloCall)
.observeOn(schedulerProvider.io())
.subscribeOn(schedulerProvider.ui())
.subscribe({
// on success
}, {
// on failure
})
Everything is working well when the network is ok, however when losing connectivity, subscription fails and it doesn't reconnect again?
how should I reconnect in similar scenarios,
I've been trying using rxjava operation retryWhen{}
but in vain!
thanks in advance.
retryWhen
respondsonError
so as to resubscribe.The code below retries a limited number of times (3 times and delays each try by 5 counts)
Also, make sure you are subscribing on
subscribeOn.Schedulers.io()
andobserveOn(AndroidSchedulers.mainThread()
excutes the emission (actions) on Android main thread.