In an infrastructure with multiple reactors , such as Vert.X, we can set the number of event loop threads, for example:
final VertxOptions vertxOptions = new VertxOptions();
vertxOptions.setEventLoopPoolSize(16);
final Vertx myVertx = Vertx.vertx(vertxOptions);
How to make equivalent in Spring Boot 2 WebFlux / WebClient?
source
share