@@ -493,6 +493,8 @@ public static <T> Single<T> create(SingleOnSubscribe<T> source) {
493
493
/**
494
494
* Calls a {@link Callable} for each individual {@link SingleObserver} to return the actual {@link SingleSource} to
495
495
* be subscribed to.
496
+ * <p>
497
+ * <img width="640" height="515" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.defer.png" alt="">
496
498
* <dl>
497
499
* <dt><b>Scheduler:</b></dt>
498
500
* <dd>{@code defer} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -1243,6 +1245,8 @@ public static <T> Single<T> never() {
1243
1245
1244
1246
/**
1245
1247
* Signals success with 0L value after the given delay for each SingleObserver.
1248
+ * <p>
1249
+ * <img width="640" height="292" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.timer.png" alt="">
1246
1250
* <dl>
1247
1251
* <dt><b>Scheduler:</b></dt>
1248
1252
* <dd>{@code timer} operates by default on the {@code computation} {@link Scheduler}.</dd>
@@ -1260,6 +1264,8 @@ public static Single<Long> timer(long delay, TimeUnit unit) {
1260
1264
1261
1265
/**
1262
1266
* Signals success with 0L value after the given delay for each SingleObserver.
1267
+ * <p>
1268
+ * <img width="640" height="292" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.timer.s.png" alt="">
1263
1269
* <dl>
1264
1270
* <dt><b>Scheduler:</b></dt>
1265
1271
* <dd>you specify the {@link Scheduler} to signal on.</dd>
@@ -3705,7 +3711,7 @@ public final Completable ignoreElement() {
3705
3711
/**
3706
3712
* Converts this Single into a {@link Flowable}.
3707
3713
* <p>
3708
- * <img width="640" height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.toObservable .png" alt="">
3714
+ * <img width="640" height="462 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.toFlowable .png" alt="">
3709
3715
* <dl>
3710
3716
* <dt><b>Backpressure:</b></dt>
3711
3717
* <dd>The returned {@code Flowable} honors the backpressure of the downstream consumer.</dd>
@@ -3729,7 +3735,7 @@ public final Flowable<T> toFlowable() {
3729
3735
/**
3730
3736
* Returns a {@link Future} representing the single value emitted by this {@code Single}.
3731
3737
* <p>
3732
- * <img width="640" height="395 " src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/B .toFuture.png" alt="">
3738
+ * <img width="640" height="467 " src="https://github.com/ReactiveX/RxJava/wiki/images/rx-operators/Single .toFuture.png" alt="">
3733
3739
* <dl>
3734
3740
* <dt><b>Scheduler:</b></dt>
3735
3741
* <dd>{@code toFuture} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -3747,7 +3753,7 @@ public final Future<T> toFuture() {
3747
3753
/**
3748
3754
* Converts this Single into a {@link Maybe}.
3749
3755
* <p>
3750
- * <img width="640" height="305 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.toObservable .png" alt="">
3756
+ * <img width="640" height="463 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.toMaybe .png" alt="">
3751
3757
* <dl>
3752
3758
* <dt><b>Scheduler:</b></dt>
3753
3759
* <dd>{@code toMaybe} does not operate by default on a particular {@link Scheduler}.</dd>
0 commit comments