diff --git a/src/main/java/io/reactivex/Completable.java b/src/main/java/io/reactivex/Completable.java index d00cd9b451..08485ee3f5 100644 --- a/src/main/java/io/reactivex/Completable.java +++ b/src/main/java/io/reactivex/Completable.java @@ -577,6 +577,7 @@ public static Completable fromSingle(final SingleSource single) { *
*
Scheduler:
*
{@code mergeArray} does not operate by default on a particular {@link Scheduler}.
+ *
Error handling:
*
If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled. * If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the @@ -653,6 +654,7 @@ public static Completable merge(Iterable sources) { * and expects the other {@code Publisher} to honor it as well.
*
Scheduler:
*
{@code merge} does not operate by default on a particular {@link Scheduler}.
+ *
Error handling:
*
If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled. * If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the @@ -689,6 +691,7 @@ public static Completable merge(Publisher sources) * and expects the other {@code Publisher} to honor it as well.
*
Scheduler:
*
{@code merge} does not operate by default on a particular {@link Scheduler}.
+ *
Error handling:
*
If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled. * If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the