Uses of Interface
javax.management.NotificationListener
-
Packages that use NotificationListener 软件包 描述 javax.management 提供Java Management Extensions的核心类。javax.management.modelmbean 提供ModelMBean类的定义。javax.management.relation 提供Relation Service的定义。javax.management.remote 用于远程访问JMX MBean服务器的接口。 -
-
Uses of NotificationListener in javax.management
Methods in javax.management with parameters of type NotificationListener 变量和类型 方法 描述 void
MBeanServer. addNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback)
向已注册的MBean添加侦听器。void
MBeanServerConnection. addNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback)
向已注册的MBean添加侦听器。void
NotificationBroadcaster. addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback)
向此MBean添加侦听器。void
NotificationBroadcasterSupport. addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback)
添加一个监听器。protected void
NotificationBroadcasterSupport. handleNotification(NotificationListener listener, Notification notif, Object handback)
对于每个侦听器,此方法由sendNotification
调用,以便将通知发送到该侦听器。void
MBeanServerConnection. removeNotificationListener(ObjectName name, NotificationListener listener)
从已注册的MBean中删除侦听器。void
MBeanServerConnection. removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback)
从已注册的MBean中删除侦听器。void
NotificationBroadcaster. removeNotificationListener(NotificationListener listener)
从此MBean中删除侦听器。void
NotificationEmitter. removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback)
从此MBean中删除侦听器。 -
Uses of NotificationListener in javax.management.modelmbean
Methods in javax.management.modelmbean with parameters of type NotificationListener 变量和类型 方法 描述 void
ModelMBeanNotificationBroadcaster. addAttributeChangeNotificationListener(NotificationListener listener, String attributeName, Object handback)
将实现NotificationListener接口的对象注册为侦听器。void
RequiredModelMBean. addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback)
将实现NotificationListener接口的对象注册为侦听器。void
ModelMBeanNotificationBroadcaster. removeAttributeChangeNotificationListener(NotificationListener listener, String attributeName)
从RequiredModelMBean中删除attributeChangeNotifications的侦听器。void
RequiredModelMBean. removeNotificationListener(NotificationListener listener)
从RequiredModelMBean中删除Notifications的侦听器。 -
Uses of NotificationListener in javax.management.relation
Classes in javax.management.relation that implement NotificationListener 变量和类型 类 描述 class
RelationService
Relation Service负责创建和删除关系类型和关系,处理一致性和提供查询机制。 -
Uses of NotificationListener in javax.management.remote
Methods in javax.management.remote with parameters of type NotificationListener 变量和类型 方法 描述 void
JMXConnector. addConnectionNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback)
添加侦听器以通知连接状态的更改。void
JMXConnector. removeConnectionNotificationListener(NotificationListener listener)
从列表中删除侦听器以通知状态更改。void
JMXConnector. removeConnectionNotificationListener(NotificationListener l, NotificationFilter f, Object handback)
从列表中删除侦听器以通知状态更改。
-