RockteMQ-AI commented on issue #760:
URL: 
https://github.com/apache/rocketmq-spring/issues/760#issuecomment-5533801955

   **Issue Evaluation**
   
   Category: `question`
   
   The `@RocketMQMessageListener` annotation does support broadcast mode 
through the `messageModel` attribute. The available values are:
   - `MessageModel.CLUSTERING` (default) — load balancing across consumers
   - `MessageModel.BROADCASTING` — every consumer receives every message
   
   Example:
   ```java
   @RocketMQMessageListener(
       topic = "my-topic",
       consumerGroup = "my-group",
       messageModel = MessageModel.BROADCASTING
   )
   ```
   
   ---
   *Automated evaluation by github-manager-bot*


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to