Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created August 15, 2019 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save agustarc/0cb25ebbf593b72654ab56dc215da8ff to your computer and use it in GitHub Desktop.
Save agustarc/0cb25ebbf593b72654ab56dc215da8ff to your computer and use it in GitHub Desktop.
internal class ImagesRepositoryImpl(private val source: ImageDataSource) : ImagesRepository {
override fun getImages(params: Map<String, String>): Single<Result<ImagesResponse>> {
return source.getImages(params)
.map { Result.success(it) }
.compose(applyRetryPolicy(TIMEOUT, maxRetries = 5, interval = 2, unit = TimeUnit.SECONDS) { Single.just(Result.failure(it)) })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment