JMS 自定义消息排序
JMS 问题:- 有没有办法根据自定义规则/策略/策略更改 JMSQUEUE 中的消息顺序?除了 FIFO 之外..
JMS Question:- Is there any way to change the messages order in JMSQUEUE based on custom rule/policy/strategy? Other then FIFO..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在发送到队列的消息上设置 JMSPriority 属性。 JMSPriority 的值可以从 0 到 9,其中 9 是最高的。如果队列中存在多条消息,则优先级最高的消息将首先被消费。
此链接可能对您有帮助,
http://www. techpaste.com/2012/04/prioritize-messages-enqueued-jms-queue/
You can try setting JMSPriority property on the messages sent to the queue. JMSPriority can have value from 0 to 9, with 9 been the highest. If multiple messages are present in the queue then the message with the highest priority will be consumed first.
This link could be helpful for you,
http://www.techpaste.com/2012/04/prioritize-messages-enqueued-jms-queue/