@@ -7744,9 +7744,9 @@ public final Observable<TimeInterval<T>> timeInterval(Scheduler scheduler) {
7744
7744
}
7745
7745
7746
7746
/**
7747
- * Returns an Observable that completes if either the first item emitted by the source
7748
- * Observable or any subsequent item don't arrive within time windows defined by other
7749
- * Observables.
7747
+ * Returns an Observable that mirrors the source Observable, but emits a TimeoutException
7748
+ * if either the first item emitted by the source Observable or any subsequent item
7749
+ * don't arrive within time windows defined by other Observables.
7750
7750
* <p>
7751
7751
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/timeout5.png">
7752
7752
*
@@ -7799,16 +7799,16 @@ public final <U, V> Observable<T> timeout(Func0<? extends Observable<U>> firstTi
7799
7799
}
7800
7800
7801
7801
/**
7802
- * Returns an Observable that mirrors the source Observable, but completes if an item emitted by
7802
+ * Returns an Observable that mirrors the source Observable, but emits a TimeoutException if an item emitted by
7803
7803
* the source Observable doesn't arrive within a window of time after the emission of the
7804
7804
* previous item, where that period of time is measured by an Observable that is a function
7805
7805
* of the previous item.
7806
7806
* <p>
7807
7807
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/timeout3.png">
7808
7808
* <p>
7809
- * The arrival of the first source item is never timed out.
7809
+ * Note: The arrival of the first source item is never timed out.
7810
7810
*
7811
- * @param <U >
7811
+ * @param <V >
7812
7812
* the timeout value type (ignored)
7813
7813
* @param timeoutSelector
7814
7814
* a function that returns an observable for each item emitted by the source
@@ -7831,7 +7831,7 @@ public final <V> Observable<T> timeout(Func1<? super T, ? extends Observable<V>>
7831
7831
* <p>
7832
7832
* The arrival of the first source item is never timed out.
7833
7833
*
7834
- * @param <U >
7834
+ * @param <V >
7835
7835
* the timeout value type (ignored)
7836
7836
* @param timeoutSelector
7837
7837
* a function that returns an observable for each item emitted by the source
0 commit comments