模块  java.management

Class TargetedNotification

  • 实现的所有接口
    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请求而返回的ID。

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

      • getNotification

        public Notification getNotification()

        发出的通知。

        结果
        通知。
      • getListenerID

        public Integer getListenerID()

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

        结果
        监听器ID。
      • toString

        public String toString()
        返回此目标通知的文本表示形式。
        重写:
        toString在类 Object
        结果
        a String representation of this Targeted Notification.