1 min readMay 2, 2019
Yes, there are a few cases where we — as the subscriber — have chosen to use onErrorResumeNext (which is equivalent to the Single onErrorReturn). It can be useful if the error could be handled with a default value in the success case.
If you have control over creating the observable, it might be better to fix that to emit the error as an item rather than require the subscribers to convert it with onErrorReturn.