kaushikgopal / RxJava-Android-Samples

Learning RxJava for Android by example
Apache License 2.0
7.55k stars 1.37k forks source link

Add link for Exponential Backoff with Jitter #101

Closed leandrofavarin closed 7 years ago

leandrofavarin commented 7 years ago

After reading this article about how Stripe handle errors between the clients and the server, I learned about the Thundering herd problem, and I decided to write one operator in Java using RxJava 2, including support for the Jitter.

This PR adds a link to the post I wrote.

Hopefully it'll be useful for anyone interested!