Reputation: 147
I am fairly new to microservices and asynchronous architectures and I am wondering how typical request/response works in such environments.
Example 1:
Example 2:
Thank you in advance.
Upvotes: 2
Views: 4088
Reputation: 125
Instead of waiting for the asynchronous part to complete (which I suppose is an antipattern), I would do the A service to response immediatelly - saying the request was received and the proces behind it was started.
Then, you have two options:
Upvotes: 4