1 7 8 9 package javax.management; 10 11 12 22 public interface NotificationBroadcaster { 23 24 40 public void addNotificationListener(NotificationListener listener, 41 NotificationFilter filter, 42 Object handback) 43 throws java.lang.IllegalArgumentException ; 44 45 60 public void removeNotificationListener(NotificationListener listener) 61 throws ListenerNotFoundException ; 62 63 75 public MBeanNotificationInfo [] getNotificationInfo(); 76 } 77 | Popular Tags |