RxJava: Difference between revisions

From BITPlan Wiki
Jump to navigation Jump to search
Line 53: Line 53:
   package reactivex {
   package reactivex {
     note top of Observable
     note top of Observable
The Observable class is the non-backpressured,
optionally multi-valued base reactive class that
offers factory methods, intermediate operators and
the ability to consume synchronous
and/or asynchronous reactive dataflows.
see [[http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Observable.html javadoc]].
see [[http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Observable.html javadoc]].
end note
end note
     interface Observable {
     class Observable {
      Disposable subscribe(Consumer<? super T> onNext)
     }
     }
     note top of Observer
     note top of Observer

Revision as of 13:08, 2 March 2020