toFlux |
Extension for transforming an Iterable to a Flux. fun <T : Any> Iterable<T>.toFlux(): Flux<T> |
whenComplete |
Aggregates this Iterable of void Publishers into a new Mono.
An alias for a corresponding Mono.when to avoid use of fun Iterable<Publisher<*>>.whenComplete(): Mono<Void> |
zip |
Merges this Iterable of Monos into a new Mono by combining them with combinator. fun <T, R> Iterable<Mono<T>>.zip(combinator: (List<T>) -> R): Mono<R> |