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
Wrap functions and consumers into Flowables and Observables or into another layer of Functions.
165
-
Most of these can now be achieved via `fromCallable` and some function composition in plain RxJava (1.x and 2.x alike).
165
+
Most of these can now be achieved via `fromCallable` and some function composition in plain RxJava.
166
166
167
167
### start
168
168
@@ -378,7 +378,7 @@ TBD: examples
378
378
379
379
## Debug support
380
380
381
-
Bydefault, RxJava2's RxJavaPlugins only offers the ability to hook into the assembly process (i.e., when you apply an operator on a sequence or create one) unlike 1.x where there is an `RxJavaHooks.enableAssemblyTracking()` method. Since the standard format is of discussion there, 2.x doesn't have such feature built in but only
381
+
Bydefault, RxJava3's RxJavaPlugins only offers the ability to hook into the assembly process (i.e., when you apply an operator on a sequence or create one) unlike 1.x where there is an `RxJavaHooks.enableAssemblyTracking()` method. Since the standard format is of discussion there, 3.x doesn't have such feature built in but only
382
382
in this extension library.
383
383
384
384
### Usage
@@ -566,7 +566,7 @@ Note that calling `onComplete` after `onNext` is optional with `SoloProcessor` b
566
566
567
567
### MulticastProcessor
568
568
569
-
*Moved to RxJava as standard processor: [`io.reactivex.processors.MulticastProcessor`](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/processors/MulticastProcessor.html)*.
569
+
*Moved to RxJava as standard processor: [`io.reactivex.rxjava3.processors.MulticastProcessor`](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/processors/MulticastProcessor.html)*.
0 commit comments