Is possible to convert a Flux to Mono [duplicate]
Solution 1:
You need to use collectList() method in Flux
to transform the Flux<Foo>
to Mono<List<Foo>>
. That is the best you can do.
You need to use collectList() method in Flux
to transform the Flux<Foo>
to Mono<List<Foo>>
. That is the best you can do.