Difference between revisions of "RxJava"

From BITPlan Wiki
Jump to navigation Jump to search
Line 11: Line 11:
 
* https://github.com/ReactiveX/RxJava/wiki/What%27s-different-in-2.0
 
* https://github.com/ReactiveX/RxJava/wiki/What%27s-different-in-2.0
 
* https://blog.kaush.co/2017/06/21/rxjava1-rxjava2-migration-understanding-changes/
 
* https://blog.kaush.co/2017/06/21/rxjava1-rxjava2-migration-understanding-changes/
 +
<uml>
 +
hide circle
 +
package io {
 +
  package reactivex {
 +
    interface Observer {
 +
      void onComplete()
 +
      void onError(Throwable e)
 +
      void onNext(T t)
 +
      void onSubscribe(Disposable d)
 +
  }
 +
  package disposables {
 +
    interface Disposable {
 +
        void dispose()
 +
        boolean isDisposed()
 +
    }
 +
  }
 +
  }
 +
}
 +
</uml>
  
 
== RxJava 1 ==
 
== RxJava 1 ==

Revision as of 11:53, 2 March 2020