toMono |
Extension for transforming a nullable object to a Mono. fun <T : Any> T?.toMono(): Mono<T> |
whenComplete |
Aggregates the given void Publishers into a new void Mono.
An alias for a corresponding Mono.when to avoid use of fun whenComplete(vararg sources: Publisher<*>): Mono<Void> |
zip |
Aggregates the given Monos into a new Mono. fun <R> zip(vararg monos: Mono<*>, combinator: (Array<*>) -> R): Mono<R> |