@@ -5519,7 +5519,7 @@ public final <R> Observable<R> reduce(R initialValue, Func2<R, ? super T, R> acc
5519
5519
* Returns an Observable that repeats the sequence of items emitted by the source Observable
5520
5520
* indefinitely.
5521
5521
* <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">
5523
5523
*
5524
5524
* @return an Observable that emits the items emitted by the source Observable repeatedly and in
5525
5525
* sequence
@@ -5534,7 +5534,7 @@ public final Observable<T> repeat() {
5534
5534
* Returns an Observable that repeats the sequence of items emitted by the source Observable
5535
5535
* indefinitely, on a particular scheduler.
5536
5536
* <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">
5538
5538
*
5539
5539
* @param scheduler
5540
5540
* the scheduler to emit the items on
@@ -5550,12 +5550,16 @@ public final Observable<T> repeat(Scheduler scheduler) {
5550
5550
/**
5551
5551
* Returns an Observable that repeats the sequence of items emitted by the source
5552
5552
* Observable at most count times.
5553
+ * <p>
5554
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.on.png">
5553
5555
*
5554
5556
* @param count
5555
5557
* the number of times the source Observable items are repeated,
5556
- * a count of 0 will yield an empty sequence.
5558
+ * a count of 0 will yield an empty sequence
5557
5559
* @return an Observable that repeats the sequence of items emitted by the source
5558
- * Observable at most count times.
5560
+ * Observable at most {@code count} times
5561
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#wiki-repeat">RxJava Wiki: repeat()</a>
5562
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
5559
5563
*/
5560
5564
public final Observable <T > repeat (long count ) {
5561
5565
if (count < 0 ) {
@@ -5567,14 +5571,18 @@ public final Observable<T> repeat(long count) {
5567
5571
/**
5568
5572
* Returns an Observable that repeats the sequence of items emitted by the source
5569
5573
* Observable at most count times on a particular scheduler.
5574
+ * <p>
5575
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.ons.png">
5570
5576
*
5571
5577
* @param count
5572
5578
* the number of times the source Observable items are repeated,
5573
5579
* a count of 0 will yield an empty sequence.
5574
5580
* @param scheduler
5575
- * the scheduler to emit the items on
5581
+ * the {@link Scheduler} to emit the items on
5576
5582
* @return an Observable that repeats the sequence of items emitted by the source
5577
- * Observable at most count times on a particular scheduler.
5583
+ * Observable at most {@code count} times on a particular Scheduler
5584
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#wiki-repeat">RxJava Wiki: repeat()</a>
5585
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
5578
5586
*/
5579
5587
public final Observable <T > repeat (long count , Scheduler scheduler ) {
5580
5588
return nest ().lift (new OperatorRepeat <T >(count , scheduler ));
0 commit comments