Skip to content

Instantly share code, notes, and snippets.

@defHLT
Created June 9, 2015 20:56
Show Gist options
  • Select an option

  • Save defHLT/4c4209010e66452dbf2e to your computer and use it in GitHub Desktop.

Select an option

Save defHLT/4c4209010e66452dbf2e to your computer and use it in GitHub Desktop.
RX retry times
mySubscription = retrofitInterface.doSmth(param)
.subscribeOn(Schedulers.io())
.observeOn(Schedulers.io())
.retryWhen(new RetryWithDelay(4, 2000))
.subscribe(....)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment