Skip to content

Commit 2adb1fa

Browse files
authored
2.x: Observable.replay(Function, ...) marble fixes (#5798)
1 parent 1ed3e5e commit 2adb1fa

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/io/reactivex/Observable.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9469,7 +9469,7 @@ public final ConnectableObservable<T> replay() {
94699469
* Returns an Observable that emits items that are the results of invoking a specified selector on the items
94709470
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource.
94719471
* <p>
9472-
* <img width="640" height="450" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.f.png" alt="">
9472+
* <img width="640" height="449" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.f.png" alt="">
94739473
* <dl>
94749474
* <dt><b>Scheduler:</b></dt>
94759475
* <dd>This version of {@code replay} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -9496,7 +9496,7 @@ public final <R> Observable<R> replay(Function<? super Observable<T>, ? extends
94969496
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource,
94979497
* replaying {@code bufferSize} notifications.
94989498
* <p>
9499-
* <img width="640" height="440" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.fn.png" alt="">
9499+
* <img width="640" height="391" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.fn.png" alt="">
95009500
* <dl>
95019501
* <dt><b>Scheduler:</b></dt>
95029502
* <dd>This version of {@code replay} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -9527,7 +9527,7 @@ public final <R> Observable<R> replay(Function<? super Observable<T>, ? extends
95279527
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource,
95289528
* replaying no more than {@code bufferSize} items that were emitted within a specified time window.
95299529
* <p>
9530-
* <img width="640" height="445" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.fnt.png" alt="">
9530+
* <img width="640" height="350" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.fnt.png" alt="">
95319531
* <dl>
95329532
* <dt><b>Scheduler:</b></dt>
95339533
* <dd>This version of {@code replay} operates by default on the {@code computation} {@link Scheduler}.</dd>
@@ -9561,7 +9561,7 @@ public final <R> Observable<R> replay(Function<? super Observable<T>, ? extends
95619561
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource,
95629562
* replaying no more than {@code bufferSize} items that were emitted within a specified time window.
95639563
* <p>
9564-
* <img width="640" height="445" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.fnts.png" alt="">
9564+
* <img width="640" height="328" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.fnts.png" alt="">
95659565
* <dl>
95669566
* <dt><b>Scheduler:</b></dt>
95679567
* <dd>You specify which {@link Scheduler} this operator will use.</dd>
@@ -9604,7 +9604,7 @@ public final <R> Observable<R> replay(Function<? super Observable<T>, ? extends
96049604
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource,
96059605
* replaying a maximum of {@code bufferSize} items.
96069606
* <p>
9607-
* <img width="640" height="440" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.fns.png" alt="">
9607+
* <img width="640" height="362" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.fns.png" alt="">
96089608
* <dl>
96099609
* <dt><b>Scheduler:</b></dt>
96109610
* <dd>You specify which {@link Scheduler} this operator will use.</dd>
@@ -9639,7 +9639,7 @@ public final <R> Observable<R> replay(final Function<? super Observable<T>, ? ex
96399639
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource,
96409640
* replaying all items that were emitted within a specified time window.
96419641
* <p>
9642-
* <img width="640" height="435" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.ft.png" alt="">
9642+
* <img width="640" height="393" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.ft.png" alt="">
96439643
* <dl>
96449644
* <dt><b>Scheduler:</b></dt>
96459645
* <dd>This version of {@code replay} operates by default on the {@code computation} {@link Scheduler}.</dd>
@@ -9670,7 +9670,7 @@ public final <R> Observable<R> replay(Function<? super Observable<T>, ? extends
96709670
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource,
96719671
* replaying all items that were emitted within a specified time window.
96729672
* <p>
9673-
* <img width="640" height="440" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.fts.png" alt="">
9673+
* <img width="640" height="366" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.fts.png" alt="">
96749674
* <dl>
96759675
* <dt><b>Scheduler:</b></dt>
96769676
* <dd>You specify which {@link Scheduler} this operator will use.</dd>
@@ -9705,7 +9705,7 @@ public final <R> Observable<R> replay(Function<? super Observable<T>, ? extends
97059705
* Returns an Observable that emits items that are the results of invoking a specified selector on items
97069706
* emitted by a {@link ConnectableObservable} that shares a single subscription to the source ObservableSource.
97079707
* <p>
9708-
* <img width="640" height="445" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.fs.png" alt="">
9708+
* <img width="640" height="406" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/replay.o.fs.png" alt="">
97099709
* <dl>
97109710
* <dt><b>Scheduler:</b></dt>
97119711
* <dd>You specify which {@link Scheduler} this operator will use.</dd>

0 commit comments

Comments
 (0)