Module  java.management

Class TargetedNotification

  • All Implemented Interfaces:
    Serializable


    public class TargetedNotification
    extends Object
    implements Serializable

    A(通知,听众ID)对。

    此类用于将发出的通知与其所针对的侦听器ID相关联。

    从以下版本开始:
    1.5
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • TargetedNotification

        public TargetedNotification​(Notification notification,
                                    Integer listenerID)

        构造一个TargetedNotification对象。 该对象包含一对(通知,监听器ID)。 侦听器ID标识该通知所针对的客户端侦听器。 客户端侦听器ID是先前由连接器服务器返回的响应于addNotificationListener请求的addNotificationListener

        参数
        notification - 从MBean服务器发出的通知。
        listenerID - 此通知所针对的侦听器的ID。
        异常
        IllegalArgumentException - 如果 listenerID通知为空。
    • 方法详细信息

      • getNotification

        public Notification getNotification​()

        发出的通知。

        结果
        通知。
      • getListenerID

        public Integer getListenerID​()

        通知所针对的侦听器的ID。

        结果
        侦听器ID。
      • toString

        public String toString​()
        返回此定向通知的文本表示。
        重写:
        toStringObject
        结果
        a String representation of this Targeted Notification.