public class CompletableKt
| Modifier and Type | Method and Description |
|---|---|
static io.reactivex.rxjava3.core.Completable |
concatAll(java.lang.Iterable<? extends io.reactivex.rxjava3.core.CompletableSource> $receiver)
Concats an Iterable of completables into flowable. Same as calling
Completable.concat(this) |
static io.reactivex.rxjava3.core.Completable |
mergeAllCompletables(io.reactivex.rxjava3.core.Observable<io.reactivex.rxjava3.core.Completable> $receiver)
Merges the emissions of a Observable. Same as calling
flatMapSingle { it }. |
static io.reactivex.rxjava3.core.Completable |
mergeAllCompletables(io.reactivex.rxjava3.core.Flowable<io.reactivex.rxjava3.core.Completable> $receiver)
Merges the emissions of a Flowable. Same as calling
flatMap { it }. |
static io.reactivex.rxjava3.core.Completable |
toCompletable(io.reactivex.rxjava3.functions.Action $receiver) |
static io.reactivex.rxjava3.core.Completable |
toCompletable(java.util.concurrent.Callable<? extends java.lang.Object> $receiver) |
static io.reactivex.rxjava3.core.Completable |
toCompletable(java.util.concurrent.Future<? extends java.lang.Object> $receiver) |
static io.reactivex.rxjava3.core.Completable |
toCompletable(kotlin.jvm.functions.Function0<? extends java.lang.Object> $receiver) |
@NotNull
public static io.reactivex.rxjava3.core.Completable toCompletable(@NotNull
io.reactivex.rxjava3.functions.Action $receiver)
@NotNull
public static io.reactivex.rxjava3.core.Completable toCompletable(@NotNull
java.util.concurrent.Callable<? extends java.lang.Object> $receiver)
@NotNull
public static io.reactivex.rxjava3.core.Completable toCompletable(@NotNull
java.util.concurrent.Future<? extends java.lang.Object> $receiver)
@NotNull
public static io.reactivex.rxjava3.core.Completable toCompletable(@NotNull
kotlin.jvm.functions.Function0<? extends java.lang.Object> $receiver)
@CheckReturnValue
@SchedulerSupport
@NotNull
public static io.reactivex.rxjava3.core.Completable mergeAllCompletables(@NotNull
io.reactivex.rxjava3.core.Observable<io.reactivex.rxjava3.core.Completable> $receiver)
Merges the emissions of a Observable. Same as calling flatMapSingle { it }.
@CheckReturnValue
@BackpressureSupport
@SchedulerSupport
@NotNull
public static io.reactivex.rxjava3.core.Completable mergeAllCompletables(@NotNull
io.reactivex.rxjava3.core.Flowable<io.reactivex.rxjava3.core.Completable> $receiver)
Merges the emissions of a Flowable. Same as calling flatMap { it }.
@CheckReturnValue
@SchedulerSupport
@NotNull
public static io.reactivex.rxjava3.core.Completable concatAll(@NotNull
java.lang.Iterable<? extends io.reactivex.rxjava3.core.CompletableSource> $receiver)
Concats an Iterable of completables into flowable. Same as calling Completable.concat(this)