default <U> Single<U> |
Multi.collect(Collector<T,U> collector) |
Collect the items of this Multi instance into a Single.
|
default Single<List<T>> |
Multi.collectList() |
|
static <T> Single<T> |
Single.empty() |
Get a Single instance that completes immediately.
|
static <T> Single<T> |
Single.error(Throwable error) |
Create a Single instance that reports the given given exception to its subscriber(s).
|
default Single<T> |
Multi.first() |
|
static <T> Single<T> |
Single.from(Flow.Publisher<T> source) |
Create a Single instance that publishes the first and only item received from the given publisher.
|
static <T> Single<T> |
Single.just(T item) |
Create a Single instance that publishes the given item to its subscriber(s).
|
default <U> Single<U> |
Single.map(Mapper<T,U> mapper) |
|
static <T> Single<T> |
Single.never() |
Get a Single instance that never completes.
|