计算 IBM MQ Series 队列中每个优先级的项目数

发布于 2024-07-06 02:33:05 字数 149 浏览 9 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

峩卟喜欢 2024-07-13 02:33:05

您可以使用 JMS QueueBrowser 浏览队列中的消息并建立每个优先级的总数。

QueueBrowser browser = session.createBrowser(someQueue);
for (Enumeration iter = browser.getEnumeration(); iter.hasMoreElements()) {
  Message message = (Message) iter.nextElement();
  int priority = message.getJMSPriority();
  // update counters...
}

You could use a JMS QueueBrowser to browse the messages in the queue and build up totals for each priority levels.

QueueBrowser browser = session.createBrowser(someQueue);
for (Enumeration iter = browser.getEnumeration(); iter.hasMoreElements()) {
  Message message = (Message) iter.nextElement();
  int priority = message.getJMSPriority();
  // update counters...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文