vote up 0 vote down star

I have an IBM MQ series 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?

flag

67% accept rate

1 Answer

vote up 0 vote down

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...
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.