Send broadcast message with rabbitmq reactive messaging #31322
-
I'm trying to send a broadcast message using the rabbitmq reactive library. I tried to follow the documentation and define an incoming broadcast channel, but the setting seems to be ignored. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
/cc @cescoffier (reactive-messaging), @ozangunalp (reactive-messaging) |
Beta Was this translation helpful? Give feedback.
-
The For a rabbitmq pub/sub setup you'd need to publish to a fanout exchange and bind consumer queues to that exchange. |
Beta Was this translation helpful? Give feedback.
The
broadcast
config for an incoming channel in reactive messaging corresponds to how consumed messages are dispatched to different channels.For a rabbitmq pub/sub setup you'd need to publish to a fanout exchange and bind consumer queues to that exchange.