@@ -8945,8 +8945,8 @@ public final <U, V> Flowable<V> flatMapIterable(final Function<? super T, ? exte
8945
8945
}
8946
8946
8947
8947
/**
8948
- * Maps each element of the upstream Flowable into MaybeSources, subscribes to them and
8949
- * waits until the upstream and all MaybeSources complete .
8948
+ * Maps each element of the upstream Flowable into MaybeSources, subscribes to all of them
8949
+ * and merges their onSuccess values, in no particular order, into a single Flowable sequence .
8950
8950
* <dl>
8951
8951
* <dt><b>Backpressure:</b></dt>
8952
8952
* <dd>The operator consumes the upstream in an unbounded manner.</dd>
@@ -8965,8 +8965,9 @@ public final <R> Flowable<R> flatMapMaybe(Function<? super T, ? extends MaybeSou
8965
8965
}
8966
8966
8967
8967
/**
8968
- * Maps each element of the upstream Flowable into MaybeSources, subscribes to them and
8969
- * waits until the upstream and all MaybeSources complete, optionally delaying all errors.
8968
+ * Maps each element of the upstream Flowable into MaybeSources, subscribes to at most
8969
+ * {@code maxConcurrency} MaybeSources at a time and merges their onSuccess values,
8970
+ * in no particular order, into a single Flowable sequence, optionally delaying all errors.
8970
8971
* <dl>
8971
8972
* <dt><b>Backpressure:</b></dt>
8972
8973
* <dd>If {@code maxConcurrency == Integer.MAX_VALUE} the operator consumes the upstream in an unbounded manner.
@@ -8992,8 +8993,8 @@ public final <R> Flowable<R> flatMapMaybe(Function<? super T, ? extends MaybeSou
8992
8993
}
8993
8994
8994
8995
/**
8995
- * Maps each element of the upstream Flowable into SingleSources, subscribes to them and
8996
- * waits until the upstream and all SingleSources complete .
8996
+ * Maps each element of the upstream Flowable into SingleSources, subscribes to all of them
8997
+ * and merges their onSuccess values, in no particular order, into a single Flowable sequence .
8997
8998
* <dl>
8998
8999
* <dt><b>Backpressure:</b></dt>
8999
9000
* <dd>The operator consumes the upstream in an unbounded manner.</dd>
@@ -9012,8 +9013,9 @@ public final <R> Flowable<R> flatMapSingle(Function<? super T, ? extends SingleS
9012
9013
}
9013
9014
9014
9015
/**
9015
- * Maps each element of the upstream Flowable into SingleSources, subscribes to them and
9016
- * waits until the upstream and all SingleSources complete, optionally delaying all errors.
9016
+ * Maps each element of the upstream Flowable into SingleSources, subscribes to at most
9017
+ * {@code maxConcurrency} SingleSources at a time and merges their onSuccess values,
9018
+ * in no particular order, into a single Flowable sequence, optionally delaying all errors.
9017
9019
* <dl>
9018
9020
* <dt><b>Backpressure:</b></dt>
9019
9021
* <dd>If {@code maxConcurrency == Integer.MAX_VALUE} the operator consumes the upstream in an unbounded manner.
0 commit comments