@@ -2537,10 +2537,11 @@ public static Observable<Long> interval(long period, @NonNull TimeUnit unit, @No
25372537 * @throws IllegalArgumentException
25382538 * if {@code count} is negative, or if {@code start} + {@code count} − 1 exceeds
25392539 * {@link Long#MAX_VALUE}
2540+ * @see #range(int, int)
25402541 */
25412542 @CheckReturnValue
2542- @SchedulerSupport(SchedulerSupport.COMPUTATION)
25432543 @NonNull
2544+ @SchedulerSupport(SchedulerSupport.COMPUTATION)
25442545 public static Observable<Long> intervalRange(long start, long count, long initialDelay, long period, @NonNull TimeUnit unit) {
25452546 return intervalRange(start, count, initialDelay, period, unit, Schedulers.computation());
25462547 }
@@ -3895,6 +3896,8 @@ public static <T> Observable<T> never() {
38953896 * if {@code count} is negative, or if {@code start} + {@code count} − 1 exceeds
38963897 * {@link Integer#MAX_VALUE}
38973898 * @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)
38983901 */
38993902 @CheckReturnValue
39003903 @SchedulerSupport(SchedulerSupport.NONE)
@@ -3933,6 +3936,7 @@ public static Observable<Integer> range(int start, int count) {
39333936 * if {@code count} is negative, or if {@code start} + {@code count} − 1 exceeds
39343937 * {@link Long#MAX_VALUE}
39353938 * @see <a href="http://reactivex.io/documentation/operators/range.html">ReactiveX operators documentation: Range</a>
3939+ * @see #intervalRange(long, long, long, long, TimeUnit)
39363940 */
39373941 @CheckReturnValue
39383942 @SchedulerSupport(SchedulerSupport.NONE)
0 commit comments