1 package example; 2 3 import javax.management.NotificationBroadcasterSupport ; 4 import javax.management.Notification ; 5 6 9 public class Emitter extends NotificationBroadcasterSupport  10 implements EmitterMBean { 11 private long _sequence; 12 13 16 public void send() 17 { 18 Notification notif; 19 20 notif = new Notification ("example.send", this, _sequence++); 21 22 sendNotification(notif); 23 } 24 } 25 | Popular Tags |