RxJavaDebug
RxJavaDebug copied to clipboard
Is there any documentation?
Haven't noticed any documentation for using this project. Could some be created please or the README updated with an appropriate 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);
}
}));