-
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
RxJavaPlugins.reset() does not reset Observable.hook #4006
Comments
Yes, you can't override that once the |
For now you can register kind of super execution hook and add/remove On Tue, 14 Jun 2016, 11:07 David Karnok, [email protected] wrote:
|
Yeah, I figured I needed some sort of composite hook. |
An easy fix would be to remove the |
I'm working on a PR to solve problems like this. Stay tuned. |
Closing via #4007. |
I tried using the RxJavaObservableExecutionHook and noticed that once used, it cannot be changed. It seems that
Observable
holds a static reference to this hook and uses whatever was set when the class was created. Callingreset()
has no effect onObservable
.The second assert fails. I'm using 1.1.5.
The text was updated successfully, but these errors were encountered: