whenComplete

fun Iterable<Publisher<*>>.whenComplete(): Mono<Void>

Aggregates this Iterable of void Publishers into a new Mono. An alias for a corresponding Mono.when to avoid use of when, which is a keyword in Kotlin.

TODO Move to MonoExtensions.kt in next major version

Author

DoHyung Kim

Sebastien Deleuze

Since

3.1


fun whenComplete(vararg sources: Publisher<*>): Mono<Void>

Aggregates the given void Publishers into a new void Mono. An alias for a corresponding Mono.when to avoid use of when, which is a keyword in Kotlin.

Author

DoHyung Kim

Sebastien Deleuze

Since

3.1