@@ -2537,10 +2537,11 @@ public static Observable<Long> interval(long period, @NonNull TimeUnit unit, @No
2537
2537
* @throws IllegalArgumentException
2538
2538
* if {@code count} is negative, or if {@code start} + {@code count} − 1 exceeds
2539
2539
* {@link Long#MAX_VALUE}
2540
+ * @see #range(int, int)
2540
2541
*/
2541
2542
@CheckReturnValue
2542
- @SchedulerSupport(SchedulerSupport.COMPUTATION)
2543
2543
@NonNull
2544
+ @SchedulerSupport(SchedulerSupport.COMPUTATION)
2544
2545
public static Observable<Long> intervalRange(long start, long count, long initialDelay, long period, @NonNull TimeUnit unit) {
2545
2546
return intervalRange(start, count, initialDelay, period, unit, Schedulers.computation());
2546
2547
}
@@ -3895,6 +3896,8 @@ public static <T> Observable<T> never() {
3895
3896
* if {@code count} is negative, or if {@code start} + {@code count} − 1 exceeds
3896
3897
* {@link Integer#MAX_VALUE}
3897
3898
* @see <a href="http://reactivex.io/documentation/operators/range.html">ReactiveX operators documentation: Range</a>
3899
+ * @see #rangeLong(long, long)
3900
+ * @see #intervalRange(long, long, long, long, TimeUnit)
3898
3901
*/
3899
3902
@CheckReturnValue
3900
3903
@SchedulerSupport(SchedulerSupport.NONE)
@@ -3933,6 +3936,7 @@ public static Observable<Integer> range(int start, int count) {
3933
3936
* if {@code count} is negative, or if {@code start} + {@code count} − 1 exceeds
3934
3937
* {@link Long#MAX_VALUE}
3935
3938
* @see <a href="http://reactivex.io/documentation/operators/range.html">ReactiveX operators documentation: Range</a>
3939
+ * @see #intervalRange(long, long, long, long, TimeUnit)
3936
3940
*/
3937
3941
@CheckReturnValue
3938
3942
@SchedulerSupport(SchedulerSupport.NONE)
0 commit comments