JMX Notifications and priorities.

Can JMX Notifications have priorities? If yes then how can we set them? I could not find any material about this on the net.
[131 byte] By [AUTOMATONa] at [2007-11-26 20:51:35]
# 1

There is no built-in support for priorities. You can define priorities yourself using the userData property of each Notification. For example, you could establish a convention in your application whereby Notification.getUserData() returns an Integer that is the priority of the notification, and arrange for every Notification you emit to follow this convention.

In JMX 2.0, which will be part of JDK 7, we are planning to add an Event Service for better handling of Notifications; see <http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5108776>. We will probably also add a Priority property to javax.management.Notification. The Event Service will be able to deliver notifications in order of their Priority, by default, and will also allow you to specify a Comparator<Notification> to use a different order.

蒩monn McManus -- JMX Spec Lead -- http://weblogs.java.net/blog/emcmanus

emcmanusa at 2007-7-10 2:16:44 > top of Java-index,Core,Monitoring & Management...
# 2
Exactly! This is what I am doing right now actually. It will then be upto the user of the console to appreciate the priority and take appropriate action.
AUTOMATONa at 2007-7-10 2:16:44 > top of Java-index,Core,Monitoring & Management...