You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -14978,6 +14977,7 @@ public final Flowable<T> switchIfEmpty(Publisher<? extends T> other) {
14978
14977
* Publisher
14979
14978
* @return a Flowable that emits the items emitted by the Publisher returned from applying {@code func} to the most recently emitted item emitted by the source Publisher
@@ -15013,6 +15013,7 @@ public final <R> Flowable<R> switchMap(Function<? super T, ? extends Publisher<?
15013
15013
* the number of elements to prefetch from the current active inner Publisher
15014
15014
* @return a Flowable that emits the items emitted by the Publisher returned from applying {@code func} to the most recently emitted item emitted by the source Publisher
@@ -15102,7 +15103,7 @@ public final Completable switchMapCompletable(@NonNull Function<? super T, ? ext
15102
15103
* {@link CompletableSource} to be subscribed to and awaited for
15103
15104
* (non blockingly) for its terminal event
15104
15105
* @return the new Completable instance
15105
-
* @see #switchMapCompletableDelayError(Function)
15106
+
* @see #switchMapCompletable(Function)
15106
15107
* @since 2.2
15107
15108
*/
15108
15109
@CheckReturnValue
@@ -15140,6 +15141,7 @@ public final Completable switchMapCompletableDelayError(@NonNull Function<? supe
15140
15141
* Publisher
15141
15142
* @return a Flowable that emits the items emitted by the Publisher returned from applying {@code func} to the most recently emitted item emitted by the source Publisher
@@ -15177,6 +15179,7 @@ public final <R> Flowable<R> switchMapDelayError(Function<? super T, ? extends P
15177
15179
* the number of elements to prefetch from the current active inner Publisher
15178
15180
* @return a Flowable that emits the items emitted by the Publisher returned from applying {@code func} to the most recently emitted item emitted by the source Publisher
@@ -12357,6 +12356,7 @@ public final Observable<T> switchIfEmpty(ObservableSource<? extends T> other) {
12357
12356
* ObservableSource
12358
12357
* @return an Observable that emits the items emitted by the ObservableSource returned from applying {@code func} to the most recently emitted item emitted by the source ObservableSource
@@ -12386,6 +12386,7 @@ public final <R> Observable<R> switchMap(Function<? super T, ? extends Observabl
12386
12386
* the number of elements to prefetch from the current active inner ObservableSource
12387
12387
* @return an Observable that emits the items emitted by the ObservableSource returned from applying {@code func} to the most recently emitted item emitted by the source ObservableSource
@@ -12476,7 +12477,7 @@ public final Completable switchMapCompletable(@NonNull Function<? super T, ? ext
12476
12477
* {@link CompletableSource} to be subscribed to and awaited for
12477
12478
* (non blockingly) for its terminal event
12478
12479
* @return the new Completable instance
12479
-
* @see #switchMapCompletableDelayError(Function)
12480
+
* @see #switchMapCompletable(Function)
12480
12481
* @since 2.2
12481
12482
*/
12482
12483
@CheckReturnValue
@@ -12512,7 +12513,7 @@ public final Completable switchMapCompletableDelayError(@NonNull Function<? supe
12512
12513
* return a {@code MaybeSource} to replace the current active inner source
12513
12514
* and get subscribed to.
12514
12515
* @return the new Observable instance
12515
-
* @see #switchMapMaybe(Function)
12516
+
* @see #switchMapMaybeDelayError(Function)
12516
12517
* @since 2.2
12517
12518
*/
12518
12519
@CheckReturnValue
@@ -12568,6 +12569,7 @@ public final <R> Observable<R> switchMapMaybeDelayError(@NonNull Function<? supe
12568
12569
* SingleSource
12569
12570
* @return an Observable that emits the item emitted by the SingleSource returned from applying {@code func} to the most recently emitted item emitted by the source ObservableSource
@@ -12599,6 +12601,7 @@ public final <R> Observable<R> switchMapSingle(@NonNull Function<? super T, ? ex
12599
12601
* SingleSource
12600
12602
* @return an Observable that emits the item emitted by the SingleSource returned from applying {@code func} to the most recently emitted item emitted by the source ObservableSource
@@ -12630,6 +12633,7 @@ public final <R> Observable<R> switchMapSingleDelayError(@NonNull Function<? sup
12630
12633
* ObservableSource
12631
12634
* @return an Observable that emits the items emitted by the ObservableSource returned from applying {@code func} to the most recently emitted item emitted by the source ObservableSource
@@ -12661,6 +12665,7 @@ public final <R> Observable<R> switchMapDelayError(Function<? super T, ? extends
12661
12665
* the number of elements to prefetch from the current active inner ObservableSource
12662
12666
* @return an Observable that emits the items emitted by the ObservableSource returned from applying {@code func} to the most recently emitted item emitted by the source ObservableSource
0 commit comments