We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
If an exception is thrown from a synchronous OnSubscribe it will skip the operators such as onErrorResumeNext.
OnSubscribe
onErrorResumeNext
For example:
Observable.create(subscriber -> { throw new RuntimeException("failed!"); }).onErrorResumeNext(throwable -> { return Observable.just("fallback value"); }).subscribe(System.out::println, t -> System.out.println("ERROR: " + t.getMessage()));
In this case onErrorResumeNext is not called and the error passes through.
The text was updated successfully, but these errors were encountered:
Fix Synchronous OnSubscribe Exception Skips Operators
de7b1f5
Fixes ReactiveX#1816
No branches or pull requests
If an exception is thrown from a synchronous
OnSubscribe
it will skip the operators such asonErrorResumeNext
.For example:
In this case
onErrorResumeNext
is not called and the error passes through.The text was updated successfully, but these errors were encountered: