public class MaybeKt
| Modifier and Type | Method and Description |
|---|---|
static <T> io.reactivex.rxjava3.core.Flowable<T> |
concatAll(java.lang.Iterable<? extends io.reactivex.rxjava3.core.MaybeSource<T>> $receiver)
Concats an Iterable of maybes into flowable. Same as calling
Maybe.concat(this) |
static <T> io.reactivex.rxjava3.core.Observable<T> |
mergeAllMaybes(io.reactivex.rxjava3.core.Observable<io.reactivex.rxjava3.core.Maybe> $receiver)
Merges the emissions of a Observable
flatMapMaybe { it }. |
static <T> io.reactivex.rxjava3.core.Flowable<T> |
mergeAllMaybes(io.reactivex.rxjava3.core.Flowable<io.reactivex.rxjava3.core.Maybe> $receiver)
Merges the emissions of a Flowable
flatMap { it }. |
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T> io.reactivex.rxjava3.core.Observable<T> mergeAllMaybes(@NotNull
io.reactivex.rxjava3.core.Observable<io.reactivex.rxjava3.core.Maybe> $receiver)
Merges the emissions of a ObservableflatMapMaybe { it }.
@CheckReturnValue
@BackpressureSupport
@SchedulerSupport
@NotNull
public static <T> io.reactivex.rxjava3.core.Flowable<T> mergeAllMaybes(@NotNull
io.reactivex.rxjava3.core.Flowable<io.reactivex.rxjava3.core.Maybe> $receiver)
Merges the emissions of a FlowableflatMap { it }.
@BackpressureSupport
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T> io.reactivex.rxjava3.core.Flowable<T> concatAll(@NotNull
java.lang.Iterable<? extends io.reactivex.rxjava3.core.MaybeSource<T>> $receiver)
Concats an Iterable of maybes into flowable. Same as calling Maybe.concat(this)