Project Reactor: How to control Flux emission
问题 I have a flux that emits some Date . This Date is mapped to 1024 simulated HTTP requests that I'm running on some Executer . What I'd like to do is waiting for all the 1024 HTTP requests before emitting the next Date . Currently when running, onNext() is called for many times and then it is stabilised on some steady rate. How can I change this behaviour? P.S. I'm willing to change to architecture, if needed. private void run() throws Exception { Executor executor = Executors