I have a method in spring boot that makes multiple mono call that returns a type string. This method will eventually return the results of all the mono calls which are later transformed into a POJO object. Tried Mono.zip but this accepts only 8 tuples. Is there a better solution?
eg:
Mono<String> mono1 = <Web client call>
Mono<String> mono2 = <Web client call>
Mono<String> mono3 = <Web client call>
Mono<String> mono4 = <Web client call>
.
.
.
.
.
.
Mono<String> monoN = <Web client call>