Proper way to create a Flux from a list of Mono's
问题 Lets say I have a API operation that consumes a List of CustomObjects. For every one of those objects it calls a service method that creates a Mono. How do I create a Flux from those Mono objects in an idiomatic and therefore non-blocking way? What I've come up with for now is this. I changed the method names to better reflect their intended purpose. fun myApiMethod(@RequestBody customObjs: List<CustomObject>): Flux<CustomObject> { return Flux.create { sink -> customObjs.forEach { service