File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/io/reactivex Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12373,11 +12373,11 @@ public final Flowable<T> serialize() {
12373
12373
}
12374
12374
12375
12375
/**
12376
- * Returns a new {@link Publisher} that multicasts (shares) the original {@link Publisher}. As long as
12376
+ * Returns a new {@link Publisher} that multicasts (and shares a single subscription to ) the original {@link Publisher}. As long as
12377
12377
* there is at least one {@link Subscriber} this {@link Publisher} will be subscribed and emitting data.
12378
12378
* When all subscribers have cancelled it will cancel the source {@link Publisher}.
12379
12379
* <p>
12380
- * This is an alias for {@link #publish()}.{@link ConnectableFlowable#refCount()}.
12380
+ * This is an alias for {@link #publish()}.{@link ConnectableFlowable#refCount() refCount() }.
12381
12381
* <p>
12382
12382
* <img width="640" height="510" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/publishRefCount.png" alt="">
12383
12383
* <dl>
Original file line number Diff line number Diff line change @@ -10493,11 +10493,11 @@ public final Observable<T> serialize() {
10493
10493
}
10494
10494
10495
10495
/**
10496
- * Returns a new {@link ObservableSource} that multicasts (shares) the original {@link ObservableSource}. As long as
10496
+ * Returns a new {@link ObservableSource} that multicasts (and shares a single subscription to ) the original {@link ObservableSource}. As long as
10497
10497
* there is at least one {@link Observer} this {@link ObservableSource} will be subscribed and emitting data.
10498
10498
* When all subscribers have disposed it will dispose the source {@link ObservableSource}.
10499
10499
* <p>
10500
- * This is an alias for {@link #publish()}.{@link ConnectableObservable#refCount()}.
10500
+ * This is an alias for {@link #publish()}.{@link ConnectableObservable#refCount() refCount() }.
10501
10501
* <p>
10502
10502
* <img width="640" height="510" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/publishRefCount.o.png" alt="">
10503
10503
* <dl>
You can’t perform that action at this time.
0 commit comments