Request/reply (RPC) RabbitMQ-ல் synchronous-style request-response communication-ஐ messaging மூலம் செயல்படுத்துகிறது — ஒரு client ஒரு request அனுப்பி, reply queue மூலம் response பெறுகிறது, correlation ID-ஐ பயன்படுத்தி responses-ஐ requests-க்கு match செய்கிறது. இது service-to-service calls-க்கான பயனுள்ள pattern ஆகும்.
RabbitMQ-ல் RPC எவ்வாறு வேலை செய்கிறது
RPC pattern over messaging:
1. CLIENT sends a REQUEST message, including:
→ a REPLY-TO queue (where the response should go)
→ a CORRELATION ID (unique ID to match the response to this request)
2. SERVER (consumer) processes the request and sends a RESPONSE to the reply-to queue,
including the same CORRELATION ID
3. CLIENT receives the response from its reply queue, matches it by CORRELATION ID →
pairs the response with the original request
→ request-response over async messaging
