Android: Apollo subscription with RxJava2

437 Views Asked by At

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.

1

There are 1 best solutions below

3
On

retryWhen responds onError so as to resubscribe.

The code below retries a limited number of times (3 times and delays each try by 5 counts)

response.retryWhen(errors ->
  errors
    .zipWith(Observable.range(1, 3), (n, i) -> i)
    .flatMap(retryCount -> Observable.timer((long) Math.pow(5, retryCount), TimeUnit.SECONDS))
);

Also, make sure you are subscribing on subscribeOn.Schedulers.io() and observeOn(AndroidSchedulers.mainThread() excutes the emission (actions) on Android main thread.