@@ -1980,6 +1980,8 @@ public final Flowable<T> concatWith(SingleSource<? extends T> other) {
1980
1980
/**
1981
1981
* Delays the emission of the success signal from the current Single by the specified amount.
1982
1982
* An error signal will not be delayed.
1983
+ * <p>
1984
+ * <img width="640" height="457" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.delay.png" alt="">
1983
1985
* <dl>
1984
1986
* <dt><b>Scheduler:</b></dt>
1985
1987
* <dd>{@code delay} operates by default on the {@code computation} {@link Scheduler}.</dd>
@@ -1998,6 +2000,8 @@ public final Single<T> delay(long time, TimeUnit unit) {
1998
2000
1999
2001
/**
2000
2002
* Delays the emission of the success or error signal from the current Single by the specified amount.
2003
+ * <p>
2004
+ * <img width="640" height="457" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.delay.e.png" alt="">
2001
2005
* <dl>
2002
2006
* <dt><b>Scheduler:</b></dt>
2003
2007
* <dd>{@code delay} operates by default on the {@code computation} {@link Scheduler}.</dd>
@@ -2019,6 +2023,8 @@ public final Single<T> delay(long time, TimeUnit unit, boolean delayError) {
2019
2023
/**
2020
2024
* Delays the emission of the success signal from the current Single by the specified amount.
2021
2025
* An error signal will not be delayed.
2026
+ * <p>
2027
+ * <img width="640" height="457" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.delay.s.png" alt="">
2022
2028
* <dl>
2023
2029
* <dt><b>Scheduler:</b></dt>
2024
2030
* <dd>you specify the {@link Scheduler} where the non-blocking wait and emission happens</dd>
@@ -2041,6 +2047,8 @@ public final Single<T> delay(final long time, final TimeUnit unit, final Schedul
2041
2047
2042
2048
/**
2043
2049
* Delays the emission of the success or error signal from the current Single by the specified amount.
2050
+ * <p>
2051
+ * <img width="640" height="457" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.delay.se.png" alt="">
2044
2052
* <dl>
2045
2053
* <dt><b>Scheduler:</b></dt>
2046
2054
* <dd>you specify the {@link Scheduler} where the non-blocking wait and emission happens</dd>
0 commit comments