Android Rx onError Guidelines

1 · Netflix, Inc. · May 1, 2019, 3:39 p.m.
Rx onError GuidelinesBy Ed Ballot“Creating a good API is hard.” — anyone who has created an API used by othersAs with any API, wrapping your data stream in a Rx observable requires consideration for reasonable error handling and intuitive behavior. The following guidelines are intended to help developers create consistent and intuitive API.Since we frequently create Rx Observables in our Android app, we needed a common understanding of when to use onNext() and when to use onError() to make the A...