-
- All Superinterfaces:
-
EventListener
- 所有已知实现类:
-
RelationService
public interface NotificationListener extends EventListener
应该由想要接收通知的对象来实现。- 从以下版本开始:
- 1.5
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 void
handleNotification(Notification notification, Object handback)
JMX通知发生时调用。
-
-
-
方法详细信息
-
handleNotification
void handleNotification(Notification notification, Object handback)
JMX通知发生时调用。 该方法的实现应尽快返回,以避免阻止其通知广播。- 参数
-
notification
- 通知。 -
handback
- 一个不透明的对象,可帮助收听者关联MBean发射器的信息。 该对象被传递给addNotificationListener调用,并且不经修改地重新发送给侦听器。
-
-