Skip to content
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

Is there any documentation? #1

Open
davidmoten opened this issue Nov 6, 2014 · 1 comment
Open

Is there any documentation? #1

davidmoten opened this issue Nov 6, 2014 · 1 comment

Comments

@davidmoten
Copy link

Haven't noticed any documentation for using this project. Could some be created please or the README updated with an appropriate link?

@yairkukielka
Copy link

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);
  }

}));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants