AMQP
AMQP (Advanced Message Queuing Protocol) is an open standard for message-oriented middleware governed by OASIS and standardized as ISO/IEC 19464. AMQP 1.0 enables interoperable, asynchronous communication between applications across different platforms and vendors. It defines a wire-level protocol s
5 channels
across 1 AsyncAPI spec
· Provider profile
Channels
-
Fanout channel for broadcasting notifications to all subscribers. Uses a fanout exchange to deliver messages to every bound queue regardless of routing key.AMQP Messaging API
-
Publish/subscribe channel for order creation events. Messages are published to a topic exchange and routed to all bound queues.AMQP Messaging API
-
Point-to-point channel for order processing. Messages are sent to a direct exchange and consumed by a single worker from a shared queue.AMQP Messaging API
-
Reply channel for the request/reply pattern. The server publishes responses to the client-specified reply-to queue with the matching correlation ID.AMQP Messaging API
-
Request channel for the request/reply pattern. Clients send requests with a reply-to header and correlation ID for response matching.AMQP Messaging API