public class SingleKt
| Modifier and Type | Method and Description |
|---|---|
static <T> io.reactivex.Flowable<T> |
concatAll(java.lang.Iterable<? extends io.reactivex.SingleSource<T>> $receiver)
Concats an Iterable of singles into flowable. Same as calling
Single.concat(this) |
static <T> io.reactivex.Observable<T> |
mergeAllSingles(io.reactivex.Observable<io.reactivex.Single> $receiver)
Merges the emissions of a Observable
flatMapSingle { it }. |
static <T> io.reactivex.Flowable<T> |
mergeAllSingles(io.reactivex.Flowable<io.reactivex.Single> $receiver)
Merges the emissions of a Flowable
flatMap { it }. |
@CheckReturnValue
@SchedulerSupport
@NotNull
public static <T> io.reactivex.Observable<T> mergeAllSingles(@NotNull
io.reactivex.Observable<io.reactivex.Single> $receiver)
Merges the emissions of a ObservableflatMapSingle { it }.
@CheckReturnValue
@BackpressureSupport
@SchedulerSupport
@NotNull
public static <T> io.reactivex.Flowable<T> mergeAllSingles(@NotNull
io.reactivex.Flowable<io.reactivex.Single> $receiver)
Merges the emissions of a FlowableflatMap { it }.
@CheckReturnValue
@SchedulerSupport
@BackpressureSupport
@NotNull
public static <T> io.reactivex.Flowable<T> concatAll(@NotNull
java.lang.Iterable<? extends io.reactivex.SingleSource<T>> $receiver)
Concats an Iterable of singles into flowable. Same as calling Single.concat(this)