if I dont use the reactive extensions for Quarkus Is the I/O op going to be non-blocking or blocking? I am asking this because I didnt like the reactive programming style, I wish I could have something like c# async await for java
Asked
Active
Viewed 90 times
1 Answers
1
The fact that Quarkus is reactive under the hood, does not force users to do any reactive programming.
Users are free (and in most cases encouraged) to use regular blocking APIs. When that is done, Quarkus will delegate the work to worker threads.
Some details can be found here.

geoand
- 60,071
- 24
- 172
- 190
-
would you mind to add any material explaining how that works? – user2566397 Feb 02 '23 at 14:01
-
I added a link to my answer – geoand Feb 02 '23 at 15:01