计算 IBM MQ Series 队列中每个优先级的项目数
我有一个 IBM WebSphere MQ 队列(在 Windows 上运行),其中包含许多不同优先级的项目。
我目前使用 mqQueue.CurrentDepth 获取总深度计数,但我想获取队列中每个优先级的项目数。
知道如何实现这一目标吗?
I have an IBM WebSphere MQ queue (running on Windows) containing many items of varying priority.
I currently get a total depth count using mqQueue.CurrentDepth
but I'd like to get a count of the number of items of each priority level within the queue.
Any idea how to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JMS QueueBrowser 浏览队列中的消息并建立每个优先级的总数。
You could use a JMS QueueBrowser to browse the messages in the queue and build up totals for each priority levels.