Request/reply (RPC) RabbitMQ પર સિંક્રોનસ-શૈલીનું request-response સંચાર મેસેજિંગનો ઉપયોગ કરીને સક્ષમ કરે છે — ક્લાયન્ટ એક request મોકલે છે અને reply queue દ્વારા response પ્રાપ્ત કરે છે, correlation ID નો ઉપયોગ કરીને responses ને requests સાથે મેળવીને. તે service-to-service calls માટે એક ઉપયોગી પેટર્ન છે.
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
