diff --git a/src/main/java/io/reactivex/Single.java b/src/main/java/io/reactivex/Single.java index 84f40621c4..8ae6ac777c 100644 --- a/src/main/java/io/reactivex/Single.java +++ b/src/main/java/io/reactivex/Single.java @@ -166,6 +166,8 @@ public static Single ambArray(final SingleSource... sources) /** * Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by * an Iterable sequence. + *

+ * *

*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer.
@@ -187,6 +189,8 @@ public static Flowable concat(Iterable + * *
*
Scheduler:
*
{@code concat} does not operate by default on a particular {@link Scheduler}.
@@ -207,6 +211,8 @@ public static Observable concat(ObservableSource + * *
*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer @@ -229,6 +235,8 @@ public static Flowable concat(Publisher + * *
*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer @@ -255,7 +263,7 @@ public static Flowable concat(Publisher - * + * *
*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer.
@@ -286,7 +294,7 @@ public static Flowable concat( /** * Returns a Flowable that emits the items emitted by three Singles, one after the other. *

- * + * *

*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer.
@@ -321,7 +329,7 @@ public static Flowable concat( /** * Returns a Flowable that emits the items emitted by four Singles, one after the other. *

- * + * *

*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer.
@@ -359,6 +367,8 @@ public static Flowable concat( /** * Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided in * an array. + *

+ * *

*
Backpressure:
*
The returned {@code Flowable} honors the backpressure of the downstream consumer.