RxJavaDebug icon indicating copy to clipboard operation
RxJavaDebug copied to clipboard

Is there any documentation?

Open davidmoten opened this issue 11 years ago • 1 comments

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

davidmoten avatar Nov 06 '14 00:11 davidmoten

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

}));

yairkukielka avatar Jul 21 '15 16:07 yairkukielka