public class ObservablesKt
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R> io.reactivex.rxjava3.core.Observable<R> |
withLatestFrom(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<U> other,
kotlin.jvm.functions.Function2<? super T,? super U,? extends R> combiner)
Deprecated.
|
static <T,U> io.reactivex.rxjava3.core.Observable<kotlin.Pair> |
withLatestFrom(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<U> other)
Emits a
Pair |
static <T,T1,T2,R> |
withLatestFrom(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
io.reactivex.rxjava3.core.ObservableSource<T2> o2,
kotlin.jvm.functions.Function3<? super T,? super T1,? super T2,? extends R> combiner)
Deprecated.
|
static <T,T1,T2> io.reactivex.rxjava3.core.Observable<kotlin.Triple> |
withLatestFrom(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
io.reactivex.rxjava3.core.ObservableSource<T2> o2) |
static <T,T1,T2,T3,R> |
withLatestFrom(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
io.reactivex.rxjava3.core.ObservableSource<T2> o2,
io.reactivex.rxjava3.core.ObservableSource<T3> o3,
kotlin.jvm.functions.Function4<? super T,? super T1,? super T2,? super T3,? extends R> combiner)
Deprecated.
|
static <T,T1,T2,T3,T4,R> |
withLatestFrom(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
io.reactivex.rxjava3.core.ObservableSource<T2> o2,
io.reactivex.rxjava3.core.ObservableSource<T3> o3,
io.reactivex.rxjava3.core.ObservableSource<T4> o4,
kotlin.jvm.functions.Function5<? super T,? super T1,? super T2,? super T3,? super T4,? extends R> combiner)
Deprecated.
|
static <T,U,R> io.reactivex.rxjava3.core.Observable<R> |
zipWith(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<U> other,
kotlin.jvm.functions.Function2<? super T,? super U,? extends R> zipper)
Deprecated.
|
static <T,U> io.reactivex.rxjava3.core.Observable<kotlin.Pair> |
zipWith(io.reactivex.rxjava3.core.Observable<T> $receiver,
io.reactivex.rxjava3.core.ObservableSource<U> other)
Emits a zipped
Pair |
@Deprecated
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,U,R> io.reactivex.rxjava3.core.Observable<R> withLatestFrom(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<U> other,
@NotNull
kotlin.jvm.functions.Function2<? super T,? super U,? extends R> combiner)
An alias to Observable.withLatestFrom, but allowing for cleaner lambda syntax.
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,U> io.reactivex.rxjava3.core.Observable<kotlin.Pair> withLatestFrom(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<U> other)
Emits a Pair
@Deprecated
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,T1,T2,R> io.reactivex.rxjava3.core.Observable<R> withLatestFrom(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T2> o2,
@NotNull
kotlin.jvm.functions.Function3<? super T,? super T1,? super T2,? extends R> combiner)
An alias to Observable.withLatestFrom, but allowing for cleaner lambda syntax.
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,T1,T2> io.reactivex.rxjava3.core.Observable<kotlin.Triple> withLatestFrom(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T2> o2)
@Deprecated
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,T1,T2,T3,R> io.reactivex.rxjava3.core.Observable<R> withLatestFrom(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T2> o2,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T3> o3,
@NotNull
kotlin.jvm.functions.Function4<? super T,? super T1,? super T2,? super T3,? extends R> combiner)
An alias to Observable.withLatestFrom, but allowing for cleaner lambda syntax.
@Deprecated
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,T1,T2,T3,T4,R> io.reactivex.rxjava3.core.Observable<R> withLatestFrom(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T1> o1,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T2> o2,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T3> o3,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<T4> o4,
@NotNull
kotlin.jvm.functions.Function5<? super T,? super T1,? super T2,? super T3,? super T4,? extends R> combiner)
An alias to Observable.withLatestFrom, but allowing for cleaner lambda syntax.
@Deprecated
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,U,R> io.reactivex.rxjava3.core.Observable<R> zipWith(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<U> other,
@NotNull
kotlin.jvm.functions.Function2<? super T,? super U,? extends R> zipper)
An alias to Observable.zipWith, but allowing for cleaner lambda syntax.
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T,U> io.reactivex.rxjava3.core.Observable<kotlin.Pair> zipWith(@NotNull
io.reactivex.rxjava3.core.Observable<T> $receiver,
@NotNull
io.reactivex.rxjava3.core.ObservableSource<U> other)
Emits a zipped Pair