-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Single.onErrorResumeNext #3440
Comments
I'll work on this. |
@akarnokd I can do it in 2 ways:
I guess you'll vote for 2nd way, but I think it worth to ask :) |
Frankly, I'm not satisfied with 1.x Single and how it tries to reuse Observable components; it leads to wrappers and un-wrappers and so on even for the trivial operators. If they were |
ok, no problem :) |
Observable has a onErrorResumeNext to continue with a new Observable if onError is called. I'd like something similar for Single, so:
Single already has onErrorReturn, it makes sense to have onErrorResumeNext as well.
The text was updated successfully, but these errors were encountered: