1 8 9 package mx4j.remote; 10 11 19 public interface RemoteNotificationClientHandler 20 { 21 26 public void start(); 27 28 33 public void stop(); 34 35 38 public boolean contains(NotificationTuple tuple); 39 40 46 public void addNotificationListener(Integer id, NotificationTuple tuple); 47 48 54 public Integer [] getNotificationListeners(NotificationTuple tuple); 55 56 62 public Integer getNotificationListener(NotificationTuple tuple); 63 64 69 public void removeNotificationListeners(Integer [] ids); 70 } 71 | Popular Tags |