spring - Multi-threading for reactor consumers -
i using reactor publish events throughout application , have different consumers respond events. here reactor configuration @configuration @enablereactor public class reactorconfiguration { static { environment.initializeifempty().assignerrorjournal(); } @bean public eventbus eventbus() { return eventbus.config().env(environment.get()).dispatcher(environment.shared).get(); } i expecting default ring buffer based dispatcher used , multiple messages sent single consumer should processed in parallel. instead seems processing events in synchronous fashion. thread shared-1 used process event1 consumer1 , after completing processing of event1, same thread starts processing of event2 on consumer1. how can achieve parallel processing in way should able send multiple events multiple consumers , events processed in parallel. i appreciate suggestions. this how dispatching events event bus dispatch(reactorevents.report_request_event, "",