Skip to content

Commit 9883900

Browse files
authored
Update README.md
1 parent 9861223 commit 9883900

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Flowable.just("ab", ":cde:" "fg")
162162
## Asynchronous jumpstarting a sequence
163163

164164
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.
166166

167167
### start
168168

@@ -378,7 +378,7 @@ TBD: examples
378378

379379
## Debug support
380380

381-
By default, RxJava 2'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+
By default, RxJava 3'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
382382
in this extension library.
383383

384384
### Usage
@@ -566,7 +566,7 @@ Note that calling `onComplete` after `onNext` is optional with `SoloProcessor` b
566566
567567
### MulticastProcessor
568568
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)*.
570570
571571
### UnicastWorkSubject
572572
@@ -1176,8 +1176,8 @@ Flowable.range(1, 10)
11761176
### FlowableTransformers.refCount()
11771177
11781178
*Moved to RxJava as standard operators:
1179-
[ConnectableObservable.refCount](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/observables/ConnectableObservable.html#refCount-int-long-java.util.concurrent.TimeUnit-io.reactivex.Scheduler-),
1180-
[ConnectableFlowable.refCount](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/flowables/ConnectableFlowable.html#refCount-int-long-java.util.concurrent.TimeUnit-io.reactivex.Scheduler-).
1179+
[ConnectableObservable.refCount](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/observables/ConnectableObservable.html#refCount-int-long-java.util.concurrent.TimeUnit-io.reactivex.rxjava3.core.Scheduler-),
1180+
[ConnectableFlowable.refCount](http://reactivex.io/RxJava/3.x/javadoc/io/reactivex/rxjava3/flowables/ConnectableFlowable.html#refCount-int-long-java.util.concurrent.TimeUnit-io.reactivex.rxjava3.core.Scheduler-).
11811181
11821182
### Flowables.zipLatest()
11831183

0 commit comments

Comments
 (0)