Module java.management

Class TargetedNotification

java.lang.Object
javax.management.remote.TargetedNotification
所有已实现的接口:
Serializable

public class TargetedNotification extends Object implements Serializable

一个(通知,监听器ID)对。

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

自:
1.5
参见:
  • Constructor Details

    • TargetedNotification

      public TargetedNotification(Notification notification, Integer listenerID)

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

      参数:
      notification - 从MBean服务器发出的通知。
      listenerID - 此通知所针对的监听器的ID。
      抛出:
      IllegalArgumentException - 如果listenerIDnotification为null。
  • Method Details

    • getNotification

      public Notification getNotification()

      发出的通知。

      返回:
      该通知。
    • getListenerID

      public Integer getListenerID()

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

      返回:
      监听器ID。
    • toString

      public String toString()
      返回此目标通知的文本表示。
      覆盖:
      toString 在类 Object
      返回:
      此目标通知的字符串表示。