We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Haven't noticed any documentation for using this project. Could some be created please or the README updated with an appropriate link?
The text was updated successfully, but these errors were encountered:
It looks this is in a very early stage. I found a small example here:
RxJavaPlugins.getInstance().registerObservableExecutionHook(new DebugHook(new DebugNotificationListener() { public Object onNext(DebugNotification n) { Log.v(TAG,"onNext on "+n); return super.onNext(n); } public Object start(DebugNotification n) { Log.v(TAG,"start on "+n); return super.start(n); } public void complete(Object context) { super.complete(context); Log.v(TAG,"onNext on "+context); } public void error(Object context, Throwable e) { super.error(context, e); Log.e(TAG,"error on "+context); } }));
Sorry, something went wrong.
No branches or pull requests
Haven't noticed any documentation for using this project. Could some be created please or the README updated with an appropriate link?
The text was updated successfully, but these errors were encountered: