I have three microservices A , B and C.
A is sending one request(exposed by B) to B for getting some data and B will send the same data request to C in different API (exposed by C).
Now C will send the response for the request to B in another API (exposed by B
Based on the response from C, B will send the response to A in the same API exposed by B.
what is best way to implement this use case.
I have tried to wait the request till the response received from C service