我有一张这样的清单 List<Mono<Integer>> numberMonos = new LinkedList();
我使用这段代码将list转换为mono,但由于并发性的原因,顺序发生了变化。 Flux.fromIterable(contentPlatformDetailDTOMonos).flatMap(x -> x).collectList();
在React堆通量排序之前,当我使用此代码来转换它时,我如何获得订单。
我有一张这样的清单 List<Mono<Integer>> numberMonos = new LinkedList();
我使用这段代码将list转换为mono,但由于并发性的原因,顺序发生了变化。 Flux.fromIterable(contentPlatformDetailDTOMonos).flatMap(x -> x).collectList();
在React堆通量排序之前,当我使用此代码来转换它时,我如何获得订单。
1条答案
按热度按时间wmvff8tz1#
见
concatMap()
接线员:https://projectreactor.io/docs/core/release/api/reactor/core/publisher/flux.html#concatmap-java.util.function.function-。对于整个画面,我在这里重复javadoc: