{
  "id": "rabbitmq-routing-flow",
  "chapter": "messaging-events-and-streaming",
  "batch": "01",
  "rank": 7,
  "sourcePage": 206,
  "sourcePointer": "p. 206",
  "status": "accepted",
  "reviewerStatus": "reviewed",
  "fidelityScore": 0.9,
  "canvas": {
    "width": 960,
    "height": 640
  },
  "fireworksTechGraph": {
    "style": "style-1-flat-icon",
    "diagramType": "data-flow",
    "topologyNotes": [
      "source page render inspected",
      "extracted page text inspected",
      "semantic redraw",
      "preserve major box and arrow meaning",
      "do not copy original pixels or wording"
    ],
    "publicBoundary": [
      "original vector output",
      "short generic labels only",
      "source renders remain ignored"
    ]
  },
  "callouts": [],
  "sourceReview": {
    "conceptAnchors": [
      "concept: Queue",
      "concept: Topic",
      "concept: Broker",
      "concept: Producer",
      "concept: How"
    ],
    "labelSource": "source-summary",
    "semanticStatus": "reviewed"
  },
  "title": "RabbitMQ Exchange Routing Flow",
  "groups": [
    {
      "id": "apps",
      "label": "Applications",
      "x": 42,
      "y": 118,
      "w": 168,
      "h": 330
    },
    {
      "id": "broker",
      "label": "RabbitMQ broker",
      "x": 250,
      "y": 108,
      "w": 480,
      "h": 350
    },
    {
      "id": "consumers",
      "label": "Consumers",
      "x": 770,
      "y": 118,
      "w": 150,
      "h": 330
    }
  ],
  "shapes": [
    {
      "id": "producer",
      "kind": "rect",
      "label": "Producer",
      "detail": "message",
      "x": 72,
      "y": 248,
      "w": 108,
      "h": 66,
      "tone": "blue"
    },
    {
      "id": "exchange",
      "kind": "diamond",
      "label": "Exchange",
      "detail": "routes",
      "x": 296,
      "y": 236,
      "w": 124,
      "h": 94,
      "tone": "orange"
    },
    {
      "id": "direct",
      "kind": "rect",
      "label": "Direct",
      "detail": "exact key",
      "x": 486,
      "y": 144,
      "w": 102,
      "h": 54,
      "tone": "purple"
    },
    {
      "id": "topic",
      "kind": "rect",
      "label": "Topic",
      "detail": "pattern",
      "x": 486,
      "y": 256,
      "w": 102,
      "h": 54,
      "tone": "purple"
    },
    {
      "id": "fanout",
      "kind": "rect",
      "label": "Fanout",
      "detail": "broadcast",
      "x": 486,
      "y": 368,
      "w": 102,
      "h": 54,
      "tone": "purple"
    },
    {
      "id": "q1",
      "kind": "queue",
      "label": "Queue A",
      "detail": "binding",
      "x": 628,
      "y": 152,
      "w": 86,
      "h": 46,
      "tone": "teal"
    },
    {
      "id": "q2",
      "kind": "queue",
      "label": "Queue B",
      "detail": "binding",
      "x": 628,
      "y": 264,
      "w": 86,
      "h": 46,
      "tone": "teal"
    },
    {
      "id": "q3",
      "kind": "queue",
      "label": "Queue C",
      "detail": "binding",
      "x": 628,
      "y": 376,
      "w": 86,
      "h": 46,
      "tone": "teal"
    },
    {
      "id": "consumer",
      "kind": "rect",
      "label": "Consumer",
      "detail": "process",
      "x": 800,
      "y": 248,
      "w": 96,
      "h": 66,
      "tone": "green"
    }
  ],
  "connectors": [
    {
      "from": "producer",
      "to": "exchange",
      "label": "publish",
      "flow": "async"
    },
    {
      "from": "exchange",
      "to": "direct",
      "label": "route",
      "flow": "control"
    },
    {
      "from": "exchange",
      "to": "topic",
      "label": "route",
      "flow": "control"
    },
    {
      "from": "exchange",
      "to": "fanout",
      "label": "route",
      "flow": "control"
    },
    {
      "from": "direct",
      "to": "q1",
      "label": "bind",
      "flow": "data"
    },
    {
      "from": "topic",
      "to": "q2",
      "label": "bind",
      "flow": "data"
    },
    {
      "from": "fanout",
      "to": "q3",
      "label": "bind",
      "flow": "data"
    },
    {
      "from": "q2",
      "to": "consumer",
      "label": "deliver",
      "flow": "main"
    }
  ]
}
