diff --git a/src/main/java/io/reactivex/Single.java b/src/main/java/io/reactivex/Single.java index 84e96defbb..72eed3912f 100644 --- a/src/main/java/io/reactivex/Single.java +++ b/src/main/java/io/reactivex/Single.java @@ -1978,6 +1978,8 @@ public final Flowable concatWith(SingleSource other) { /** * Delays the emission of the success signal from the current Single by the specified amount. * An error signal will not be delayed. + *

+ * *

*
Scheduler:
*
{@code delay} operates by default on the {@code computation} {@link Scheduler}.
@@ -1996,6 +1998,8 @@ public final Single delay(long time, TimeUnit unit) { /** * Delays the emission of the success or error signal from the current Single by the specified amount. + *

+ * *

*
Scheduler:
*
{@code delay} operates by default on the {@code computation} {@link Scheduler}.
@@ -2017,6 +2021,8 @@ public final Single delay(long time, TimeUnit unit, boolean delayError) { /** * Delays the emission of the success signal from the current Single by the specified amount. * An error signal will not be delayed. + *

+ * *

*
Scheduler:
*
you specify the {@link Scheduler} where the non-blocking wait and emission happens
@@ -2039,6 +2045,8 @@ public final Single delay(final long time, final TimeUnit unit, final Schedul /** * Delays the emission of the success or error signal from the current Single by the specified amount. + *

+ * *

*
Scheduler:
*
you specify the {@link Scheduler} where the non-blocking wait and emission happens