Tan Bui
Jan 9, 2022

Yes and no, depending on the reactive implementation. Using Reactive Spring doesn't help much if we just simply replace the normal HTTP communication by a Reactive Spring communication. Responses of those communications would be handle by a callback in client side anyway.

I think when we intentionally use request-and-response communication, we want it to be synchronous (e.g. bank transaction), then the sever should be optimized and try to response to the request ASAP instead of sending the response to e.g a queue.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Tan Bui
Tan Bui

Written by Tan Bui

Software Engineer @Smartly.io, phototaker, naturelover.

Responses (1)

Write a response

I think when we intentionally use request-and-response communication, we want it to be synchronous (e.g. bank transaction), then the sever should be optimized and try to response to the request ASAP instead of sending the response to e.g a queue…