@@ -9962,7 +9962,7 @@ public final Observable<T> retry() {
9962
9962
* Returns an Observable that mirrors the source ObservableSource, resubscribing to it if it calls {@code onError}
9963
9963
* and the predicate returns true for that specific exception and retry count.
9964
9964
* <p>
9965
- * <img width="640" height="315 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt="">
9965
+ * <img width="640" height="235 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.o.ne .png" alt="">
9966
9966
* <dl>
9967
9967
* <dt><b>Scheduler:</b></dt>
9968
9968
* <dd>{@code retry} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -9987,7 +9987,7 @@ public final Observable<T> retry(BiPredicate<? super Integer, ? super Throwable>
9987
9987
* Returns an Observable that mirrors the source ObservableSource, resubscribing to it if it calls {@code onError}
9988
9988
* up to a specified number of retries.
9989
9989
* <p>
9990
- * <img width="640" height="315 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt="">
9990
+ * <img width="640" height="325 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.o.n .png" alt="">
9991
9991
* <p>
9992
9992
* If the source ObservableSource calls {@link Observer#onError}, this method will resubscribe to the source
9993
9993
* ObservableSource for a maximum of {@code count} resubscriptions rather than propagating the
@@ -10016,7 +10016,7 @@ public final Observable<T> retry(long times) {
10016
10016
/**
10017
10017
* Retries at most times or until the predicate returns false, whichever happens first.
10018
10018
* <p>
10019
- * <img width="640" height="315 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt="">
10019
+ * <img width="640" height="269 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.o.nfe .png" alt="">
10020
10020
* <dl>
10021
10021
* <dt><b>Scheduler:</b></dt>
10022
10022
* <dd>{@code retry} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -10039,7 +10039,7 @@ public final Observable<T> retry(long times, Predicate<? super Throwable> predic
10039
10039
/**
10040
10040
* Retries the current Observable if the predicate returns true.
10041
10041
* <p>
10042
- * <img width="640" height="315 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt="">
10042
+ * <img width="640" height="248 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.o.e .png" alt="">
10043
10043
* <dl>
10044
10044
* <dt><b>Scheduler:</b></dt>
10045
10045
* <dd>{@code retry} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -10057,7 +10057,8 @@ public final Observable<T> retry(Predicate<? super Throwable> predicate) {
10057
10057
/**
10058
10058
* Retries until the given stop function returns true.
10059
10059
* <p>
10060
- * <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt=""> * <dl>
10060
+ * <img width="640" height="261" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retryUntil.o.png" alt="">
10061
+ * <dl>
10061
10062
* <dt><b>Scheduler:</b></dt>
10062
10063
* <dd>{@code retryUntil} does not operate by default on a particular {@link Scheduler}.</dd>
10063
10064
* </dl>
@@ -10498,7 +10499,7 @@ public final Observable<T> serialize() {
10498
10499
* <p>
10499
10500
* This is an alias for {@link #publish()}.{@link ConnectableObservable#refCount()}.
10500
10501
* <p>
10501
- * <img width="640" height="510" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/publishRefCount.png" alt="">
10502
+ * <img width="640" height="510" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/publishRefCount.o. png" alt="">
10502
10503
* <dl>
10503
10504
* <dt><b>Scheduler:</b></dt>
10504
10505
* <dd>{@code share} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -11366,7 +11367,7 @@ public final <R> Observable<R> switchMap(Function<? super T, ? extends Observabl
11366
11367
* The resulting ObservableSource completes if both the upstream ObservableSource and the last inner SingleSource, if any, complete.
11367
11368
* If the upstream ObservableSource signals an onError, the inner SingleSource is disposed and the error delivered in-sequence.
11368
11369
* <p>
11369
- * <img width="640" height="350 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchMap .png" alt="">
11370
+ * <img width="640" height="531 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchMapSingle.o .png" alt="">
11370
11371
* <dl>
11371
11372
* <dt><b>Scheduler:</b></dt>
11372
11373
* <dd>{@code switchMapSingle} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -11397,7 +11398,7 @@ public final <R> Observable<R> switchMapSingle(@NonNull Function<? super T, ? ex
11397
11398
* If the upstream ObservableSource signals an onError, the termination of the last inner SingleSource will emit that error as is
11398
11399
* or wrapped into a CompositeException along with the other possible errors the former inner SingleSources signalled.
11399
11400
* <p>
11400
- * <img width="640" height="350 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchMap .png" alt="">
11401
+ * <img width="640" height="467 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchMapSingleDelayError.o .png" alt="">
11401
11402
* <dl>
11402
11403
* <dt><b>Scheduler:</b></dt>
11403
11404
* <dd>{@code switchMapSingleDelayError} does not operate by default on a particular {@link Scheduler}.</dd>
0 commit comments