Spring Integration 5.0 + Project Reactor: controlling threads
问题 Followup question for https://stackoverflow.com/a/47136941/1776585 I can't make my integration handler to run in parallel threads while using Flux + split() + FluxMessageChannel . Consider the following snippet: // ... .handle(message -> Flux.range(0, 10) .doOnNext(i -> LOG.info("> " + i)) .subscribeOn(Schedulers.parallel())) .split() .channel(new FluxMessageChannel()) .handle(message -> LOG.info(" -> " + message.getPayload()))) // ... All logs are output in one thread: [ parallel-1] d.a