-
- All Implemented Interfaces:
public final class MonoWhenFunctionsKt
-
-
Method Summary
Modifier and Type Method Description final static Mono<Void>
whenComplete(Iterable<Publisher<?>> $self)
Aggregates this Iterable of void Publishers into a new Mono. final static Mono<Void>
whenComplete(Publisher<?> sources)
Aggregates the given void Publishers into a new void Mono. final static <T extends Any, R extends Any> Mono<R>
zip(Iterable<Mono<T>> $self, Function1<List<T>, R> combinator)
Merges this Iterable of Monos into a new Mono by combining them with combinator. final static <R extends Any> Mono<R>
zip(Mono<?> monos, Function1<Array<?>, R> combinator)
Aggregates the given Monos into a new Mono.
-