@@ -507,6 +507,8 @@ public static <T> Single<T> defer(final Callable<? extends SingleSource<? extend
507
507
508
508
/**
509
509
* Signals a Throwable returned by the callback function for each individual SingleObserver.
510
+ * <p>
511
+ * <img width="640" height="283" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.error.c.png" alt="">
510
512
* <dl>
511
513
* <dt><b>Scheduler:</b></dt>
512
514
* <dd>{@code error} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -527,7 +529,7 @@ public static <T> Single<T> error(final Callable<? extends Throwable> errorSuppl
527
529
* Returns a Single that invokes a subscriber's {@link SingleObserver#onError onError} method when the
528
530
* subscriber subscribes to it.
529
531
* <p>
530
- * <img width="640" height="190 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.error.png" alt="">
532
+ * <img width="640" height="283 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.error.png" alt="">
531
533
* <dl>
532
534
* <dt><b>Scheduler:</b></dt>
533
535
* <dd>{@code error} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2921,7 +2923,7 @@ public final Single<T> observeOn(final Scheduler scheduler) {
2921
2923
* Instructs a Single to emit an item (returned by a specified function) rather than invoking
2922
2924
* {@link SingleObserver#onError onError} if it encounters an error.
2923
2925
* <p>
2924
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.onErrorReturn.png" alt="">
2926
+ * <img width="640" height="451 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.onErrorReturn.png" alt="">
2925
2927
* <p>
2926
2928
* By default, when a Single encounters an error that prevents it from emitting the expected item to its
2927
2929
* subscriber, the Single invokes its subscriber's {@link SingleObserver#onError} method, and then quits
@@ -2952,6 +2954,8 @@ public final Single<T> onErrorReturn(final Function<Throwable, ? extends T> resu
2952
2954
2953
2955
/**
2954
2956
* Signals the specified value as success in case the current Single signals an error.
2957
+ * <p>
2958
+ * <img width="640" height="451" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.onErrorReturnItem.png" alt="">
2955
2959
* <dl>
2956
2960
* <dt><b>Scheduler:</b></dt>
2957
2961
* <dd>{@code onErrorReturnItem} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -2971,7 +2975,7 @@ public final Single<T> onErrorReturnItem(final T value) {
2971
2975
* Instructs a Single to pass control to another Single rather than invoking
2972
2976
* {@link SingleObserver#onError(Throwable)} if it encounters an error.
2973
2977
* <p>
2974
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/onErrorResumeNext.png" alt="">
2978
+ * <img width="640" height="451 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single. onErrorResumeNext.png" alt="">
2975
2979
* <p>
2976
2980
* By default, when a Single encounters an error that prevents it from emitting the expected item to
2977
2981
* its {@link SingleObserver}, the Single invokes its SingleObserver's {@code onError} method, and then quits
@@ -3005,7 +3009,7 @@ public final Single<T> onErrorResumeNext(final Single<? extends T> resumeSingleI
3005
3009
* Instructs a Single to pass control to another Single rather than invoking
3006
3010
* {@link SingleObserver#onError(Throwable)} if it encounters an error.
3007
3011
* <p>
3008
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/onErrorResumeNext.png" alt="">
3012
+ * <img width="640" height="451 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single. onErrorResumeNext.f .png" alt="">
3009
3013
* <p>
3010
3014
* By default, when a Single encounters an error that prevents it from emitting the expected item to
3011
3015
* its {@link SingleObserver}, the Single invokes its SingleObserver's {@code onError} method, and then quits
0 commit comments