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
@@ -15121,6 +15120,7 @@ public final Flowable<T> switchIfEmpty(Publisher<? extends T> other) {
15121
15120
* Publisher
15122
15121
* @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
@@ -15156,6 +15156,7 @@ public final <R> Flowable<R> switchMap(Function<? super T, ? extends Publisher<?
15156
15156
* the number of elements to prefetch from the current active inner Publisher
15157
15157
* @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
@@ -15245,7 +15246,7 @@ public final Completable switchMapCompletable(@NonNull Function<? super T, ? ext
15245
15246
* {@link CompletableSource} to be subscribed to and awaited for
15246
15247
* (non blockingly) for its terminal event
15247
15248
* @return the new Completable instance
15248
-
* @see #switchMapCompletableDelayError(Function)
15249
+
* @see #switchMapCompletable(Function)
15249
15250
* @since 2.2
15250
15251
*/
15251
15252
@CheckReturnValue
@@ -15283,6 +15284,7 @@ public final Completable switchMapCompletableDelayError(@NonNull Function<? supe
15283
15284
* Publisher
15284
15285
* @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
@@ -15320,6 +15322,7 @@ public final <R> Flowable<R> switchMapDelayError(Function<? super T, ? extends P
15320
15322
* the number of elements to prefetch from the current active inner Publisher
15321
15323
* @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
@@ -12405,6 +12404,7 @@ public final Observable<T> switchIfEmpty(ObservableSource<? extends T> other) {
12405
12404
* ObservableSource
12406
12405
* @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
@@ -12434,6 +12434,7 @@ public final <R> Observable<R> switchMap(Function<? super T, ? extends Observabl
12434
12434
* the number of elements to prefetch from the current active inner ObservableSource
12435
12435
* @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
@@ -12524,7 +12525,7 @@ public final Completable switchMapCompletable(@NonNull Function<? super T, ? ext
12524
12525
* {@link CompletableSource} to be subscribed to and awaited for
12525
12526
* (non blockingly) for its terminal event
12526
12527
* @return the new Completable instance
12527
-
* @see #switchMapCompletableDelayError(Function)
12528
+
* @see #switchMapCompletable(Function)
12528
12529
* @since 2.2
12529
12530
*/
12530
12531
@CheckReturnValue
@@ -12560,7 +12561,7 @@ public final Completable switchMapCompletableDelayError(@NonNull Function<? supe
12560
12561
* return a {@code MaybeSource} to replace the current active inner source
12561
12562
* and get subscribed to.
12562
12563
* @return the new Observable instance
12563
-
* @see #switchMapMaybe(Function)
12564
+
* @see #switchMapMaybeDelayError(Function)
12564
12565
* @since 2.2
12565
12566
*/
12566
12567
@CheckReturnValue
@@ -12616,6 +12617,7 @@ public final <R> Observable<R> switchMapMaybeDelayError(@NonNull Function<? supe
12616
12617
* SingleSource
12617
12618
* @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
@@ -12647,6 +12649,7 @@ public final <R> Observable<R> switchMapSingle(@NonNull Function<? super T, ? ex
12647
12649
* SingleSource
12648
12650
* @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
@@ -12678,6 +12681,7 @@ public final <R> Observable<R> switchMapSingleDelayError(@NonNull Function<? sup
12678
12681
* ObservableSource
12679
12682
* @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
@@ -12709,6 +12713,7 @@ public final <R> Observable<R> switchMapDelayError(Function<? super T, ? extends
12709
12713
* the number of elements to prefetch from the current active inner ObservableSource
12710
12714
* @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