Skip to content

Commit b6a9c5c

Browse files
committed
Changing marble diagrams for repeat() variants to those that operate on a source Observable rather than a source item
1 parent 9f12435 commit b6a9c5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5519,7 +5519,7 @@ public final <R> Observable<R> reduce(R initialValue, Func2<R, ? super T, R> acc
55195519
* Returns an Observable that repeats the sequence of items emitted by the source Observable
55205520
* indefinitely.
55215521
* <p>
5522-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.png">
5522+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.o.png">
55235523
*
55245524
* @return an Observable that emits the items emitted by the source Observable repeatedly and in
55255525
* sequence
@@ -5534,7 +5534,7 @@ public final Observable<T> repeat() {
55345534
* Returns an Observable that repeats the sequence of items emitted by the source Observable
55355535
* indefinitely, on a particular scheduler.
55365536
* <p>
5537-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.s.png">
5537+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.os.png">
55385538
*
55395539
* @param scheduler
55405540
* the scheduler to emit the items on
@@ -5551,7 +5551,7 @@ public final Observable<T> repeat(Scheduler scheduler) {
55515551
* Returns an Observable that repeats the sequence of items emitted by the source
55525552
* Observable at most count times.
55535553
* <p>
5554-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.n.png">
5554+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.on.png">
55555555
*
55565556
* @param count
55575557
* the number of times the source Observable items are repeated,
@@ -5572,7 +5572,7 @@ public final Observable<T> repeat(long count) {
55725572
* Returns an Observable that repeats the sequence of items emitted by the source
55735573
* Observable at most count times on a particular scheduler.
55745574
* <p>
5575-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.ns.png">
5575+
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.ons.png">
55765576
*
55775577
* @param count
55785578
* the number of times the source Observable items are repeated,

0 commit comments

Comments
 (0)