@@ -1108,20 +1108,27 @@ public static Observable<Integer> range(int start, int count, Scheduler schedule
1108
1108
/**
1109
1109
* Repeats the observable sequence indefinitely.
1110
1110
* <p>
1111
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.png">
1111
1112
*
1112
- * @return The observable sequence producing the elements of the given sequence repeatedly and sequentially.
1113
- * @see <a href="http://msdn.microsoft.com/en-us/library/hh229428(v=vs.103).aspx">MSDN: Observable.Repeat</a>
1113
+ * @return an Observable that emits the items emitted by the source
1114
+ * Observable repeatedly and in sequence
1115
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#repeat">RxJava Wiki: repeat()</a>
1116
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
1114
1117
*/
1115
1118
public Observable <T > repeat () {
1116
1119
return this .repeat (Schedulers .currentThread ());
1117
1120
}
1118
1121
1119
1122
/**
1120
- * Repeats the observable sequence indefinitely.
1123
+ * Repeats the observable sequence indefinitely, on a particular scheduler .
1121
1124
* <p>
1125
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/repeat.s.png">
1126
+ *
1122
1127
* @param scheduler the scheduler to send the values on.
1123
- * @return The observable sequence producing the elements of the given sequence repeatedly and sequentially.
1124
- * @see <a href="http://msdn.microsoft.com/en-us/library/hh229428(v=vs.103).aspx">MSDN: Observable.Repeat</a>
1128
+ * @return an Observable that emits the items emitted by the source
1129
+ * Observable repeatedly and in sequence
1130
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#repeat">RxJava Wiki: repeat()</a>
1131
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
1125
1132
*/
1126
1133
public Observable <T > repeat (Scheduler scheduler ) {
1127
1134
return create (OperationRepeat .repeat (this , scheduler ));
0 commit comments