How To Avoid Blocking in Reactive Java

Good practices in asynchronous programming

Randal Kamradt Sr
Better Programming
Published in
4 min readJun 9, 2021

--

Traffic at night
Image by John Howard from Pixabay

The key to reactive programming is to react. You don’t say “do this now,” you say “do this when.” The “when” applies to when you have work to do. The work comes to you as events: a message on a message bus or an HTTP request.

--

--