@@ -2398,7 +2398,7 @@ public final static <T> Observable<Observable<T>> parallelMerge(Observable<Obser
2398
2398
* and and the set on which their items are grouped.
2399
2399
* <p>
2400
2400
* <img width="640" height="580" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/pivot.png" alt="">
2401
- *
2401
+ * <p>
2402
2402
* For example an {@code Observable} such as this =>
2403
2403
*
2404
2404
* {@code Observable<GroupedObservable<String, GroupedObservable<Boolean, Integer>>>}:
@@ -6013,7 +6013,7 @@ public final Observable<T> serialize() {
6013
6013
6014
6014
/**
6015
6015
* Returns a new {@link Observable} that multicasts (shares) the original {@link Observable}. As long as
6016
- * there is more than 1 {@link Subscriber} this {@link Observable} will be subscribed and emitting data.
6016
+ * there is more than one {@link Subscriber} this {@link Observable} will be subscribed and emitting data.
6017
6017
* When all subscribers have unsubscribed it will unsubscribe from the source {@link Observable}.
6018
6018
* <p>
6019
6019
* This is an alias for {@link #publish()}.{@link ConnectableObservable#refCount()}.
@@ -6022,7 +6022,7 @@ public final Observable<T> serialize() {
6022
6022
* <p>
6023
6023
* {@code share} does not operate by default on a particular {@link Scheduler}.
6024
6024
*
6025
- * @return a {@link Observable} that upon connection causes the source Observable to emit items
6025
+ * @return an {@code Observable} that upon connection causes the source {@code Observable} to emit items
6026
6026
* to its {@link Observer}s
6027
6027
* @see <a href="https://github.com/Netflix/RxJava/wiki/Connectable-Observable-Operators#connectableobservablerefcount">RxJava Wiki: refCount()</a>
6028
6028
* @since 0.19
@@ -7528,9 +7528,9 @@ public final Observable<TimeInterval<T>> timeInterval(Scheduler scheduler) {
7528
7528
}
7529
7529
7530
7530
/**
7531
- * Returns an Observable that mirrors the source Observable, but notifies observers of a TimeoutException if
7532
- * either the first item emitted by the source Observable or any subsequent item don't arrive within time
7533
- * windows defined by other Observables.
7531
+ * Returns an Observable that mirrors the source Observable, but notifies observers of a
7532
+ * {@code TimeoutException} if either the first item emitted by the source Observable or any subsequent item
7533
+ * doesn't arrive within time windows defined by other Observables.
7534
7534
* <p>
7535
7535
* <img width="640" height="400" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/timeout5.png" alt="">
7536
7536
* <p>
@@ -7547,17 +7547,17 @@ public final Observable<TimeInterval<T>> timeInterval(Scheduler scheduler) {
7547
7547
* a function that returns an Observable for each item emitted by the source Observable and that
7548
7548
* determines the timeout window in which the subsequent source item must arrive in order to
7549
7549
* continue the sequence
7550
- * @return an Observable that mirrors the source Observable, but notifies observers of a TimeoutException if
7551
- * either the first item or any subsequent item doesn't arrive within the time windows specified by
7552
- * the timeout selectors
7550
+ * @return an Observable that mirrors the source Observable, but notifies observers of a
7551
+ * {@code TimeoutException} if either the first item or any subsequent item doesn't arrive within
7552
+ * the time windows specified by the timeout selectors
7553
7553
*/
7554
7554
public final <U , V > Observable <T > timeout (Func0 <? extends Observable <U >> firstTimeoutSelector , Func1 <? super T , ? extends Observable <V >> timeoutSelector ) {
7555
7555
return timeout (firstTimeoutSelector , timeoutSelector , null );
7556
7556
}
7557
7557
7558
7558
/**
7559
7559
* Returns an Observable that mirrors the source Observable, but switches to a fallback Observable if either
7560
- * the first item emitted by the source Observable or any subsequent item don 't arrive within time windows
7560
+ * the first item emitted by the source Observable or any subsequent item doesn 't arrive within time windows
7561
7561
* defined by other Observables.
7562
7562
* <p>
7563
7563
* <img width="640" height="400" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/timeout6.png" alt="">
@@ -7578,8 +7578,8 @@ public final <U, V> Observable<T> timeout(Func0<? extends Observable<U>> firstTi
7578
7578
* @param other
7579
7579
* the fallback Observable to switch to if the source Observable times out
7580
7580
* @return an Observable that mirrors the source Observable, but switches to the {@code other} Observable if
7581
- * either the first item emitted by the source Observable or any subsequent item don 't arrive within
7582
- * time windows defined by the timeout selectors
7581
+ * either the first item emitted by the source Observable or any subsequent item doesn 't arrive
7582
+ * within time windows defined by the timeout selectors
7583
7583
* @throws NullPointerException
7584
7584
* if {@code timeoutSelector} is null
7585
7585
*/
@@ -7591,10 +7591,10 @@ public final <U, V> Observable<T> timeout(Func0<? extends Observable<U>> firstTi
7591
7591
}
7592
7592
7593
7593
/**
7594
- * Returns an Observable that mirrors the source Observable, but notifies observers of a TimeoutException if
7595
- * an item emitted by the source Observable doesn't arrive within a window of time after the emission of the
7596
- * previous item, where that period of time is measured by an Observable that is a function of the previous
7597
- * item.
7594
+ * Returns an Observable that mirrors the source Observable, but notifies observers of a
7595
+ * {@code TimeoutException} if an item emitted by the source Observable doesn't arrive within a window of
7596
+ * time after the emission of the previous item, where that period of time is measured by an Observable that
7597
+ * is a function of the previous item.
7598
7598
* <p>
7599
7599
* <img width="640" height="400" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/timeout3.png" alt="">
7600
7600
* <p>
@@ -7607,9 +7607,9 @@ public final <U, V> Observable<T> timeout(Func0<? extends Observable<U>> firstTi
7607
7607
* @param timeoutSelector
7608
7608
* a function that returns an observable for each item emitted by the source
7609
7609
* Observable and that determines the timeout window for the subsequent item
7610
- * @return an Observable that mirrors the source Observable, but notifies observers of a TimeoutException if
7611
- * an item emitted by the source Observable takes longer to arrive than the time window defined by
7612
- * the selector for the previously emitted item
7610
+ * @return an Observable that mirrors the source Observable, but notifies observers of a
7611
+ * {@code TimeoutException} if an item emitted by the source Observable takes longer to arrive than
7612
+ * the time window defined by the selector for the previously emitted item
7613
7613
*/
7614
7614
public final <V > Observable <T > timeout (Func1 <? super T , ? extends Observable <V >> timeoutSelector ) {
7615
7615
return timeout (null , timeoutSelector , null );
0 commit comments