You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -68,11 +68,11 @@ Flowable.just("Hello world")
68
68
69
69
RxJava 2 features several base classes you can discover operators on:
70
70
71
-
-`io.reactivex.Flowable`: 0..N flows, supporting Reactive-Streams and backpressure
72
-
-`io.reactivex.Observable`: 0..N flows, no backpressure
73
-
-`io.reactivex.Single`: a flow of exactly 1 item or an error
74
-
-`io.reactivex.Completable`: a flow without items but only a completion or error signal
75
-
-`io.reactivex.Maybe`: a flow with no items, exactly one item or an error
71
+
-[`io.reactivex.Flowable`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Flowable.html): 0..N flows, supporting Reactive-Streams and backpressure
72
+
-[`io.reactivex.Observable`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Observable.html): 0..N flows, no backpressure
73
+
-[`io.reactivex.Single`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Single.html): a flow of exactly 1 item or an error
74
+
-[`io.reactivex.Completable`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Completable.html): a flow without items but only a completion or error signal
75
+
-[`io.reactivex.Maybe`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Maybe.html): a flow with no items, exactly one item or an error
76
76
77
77
One of the common use cases for RxJava is to run some computation, network request on a background thread and show the results (or error) on the UI thread:
0 commit comments