Without Intro To Reactor Core | Baeldung

If the subscribeOn method is not used when creating a Flux, it will default to running on the main thread. This means that any code executed within the Flux will be executed on the same thread as the caller, which might block other threads or cause issues in concurrent applications. Using subscribeOn allows you to control the execution context of your code, enabling better concurrency and responsiveness.
2025-11-19