How to integrate RabbitMQ on a Microservice architecture
Hi guys, I have an app with a .NET back end made in multiple services, and those services are communicating with http requests, but some of them I'm waiting for a response when I do not need, I could just send to a messenger service like RabbitMQ, but there are some cases where I want to wait for a response to get data, from the videos that I watched about RabbitMQ, there wasn't one that showed how to wait for the other api's response, can someone send me some content or explain how can I implement a communication between multiple apis where I can wait for a response to get the data from it or just send a request to a queue without the need to stop the api's work?