@@ -4538,7 +4538,7 @@ public final <R> Observable<R> flatMap(Func1<? super T, ? extends Observable<? e
4538
4538
* by the source Observable and merging the results of the Observables obtained from this
4539
4539
* transformation
4540
4540
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
4541
- * @since 1.0.6
4541
+ * @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
4542
4542
*/
4543
4543
@ Beta
4544
4544
public final <R > Observable <R > flatMap (Func1 <? super T , ? extends Observable <? extends R >> func , int maxConcurrent ) {
@@ -4601,6 +4601,7 @@ public final <R> Observable<R> flatMap(
4601
4601
* @return an Observable that emits the results of merging the Observables returned from applying the
4602
4602
* specified functions to the emissions and notifications of the source Observable
4603
4603
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
4604
+ * @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
4604
4605
*/
4605
4606
@ Beta
4606
4607
public final <R > Observable <R > flatMap (
@@ -4662,6 +4663,7 @@ public final <U, R> Observable<R> flatMap(final Func1<? super T, ? extends Obser
4662
4663
* @return an Observable that emits the results of applying a function to a pair of values emitted by the
4663
4664
* source Observable and the collection Observable
4664
4665
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
4666
+ * @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
4665
4667
*/
4666
4668
@ Beta
4667
4669
public final <U , R > Observable <R > flatMap (final Func1 <? super T , ? extends Observable <? extends U >> collectionSelector ,
0 commit comments