Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 426 Bytes

File metadata and controls

8 lines (5 loc) · 426 Bytes

RabbitMQ example of the request-reply pattern using NodeJS (Typescript).

We have 2 microservices : RPC_Client and RPC_Server

Both of them play the roles of a Consumer and a Producer.

RPC_Client, produces to an RPC Queue, to which the RPC_Server will be consuming messages from. And will then process the data, and return a response by producing to the Reply Queue, to which the RPC_Client will be consuming responses from.