JavaTM 2 Platform
Standard Ed. 6

javax.management.remote
類別 NotificationResult

java.lang.Object
  繼承者 javax.management.remote.NotificationResult
所有已實作的介面:
Serializable

public class NotificationResult
extends Object
implements Serializable

快取記憶體的通知的查詢結果。通知快取記憶體中的通知具有正的、單調遞增的序列號。通知查詢的結果包含以下元素:

nextSequenceNumber 不能小於 earliestSequenceNumber。如果小於早先的序列號,這表明介於兩個號之間的通知可能已丟失。

從以下版本開始:
1.5
另請參見:
序列化表格

建構子摘要
NotificationResult(long earliestSequenceNumber, long nextSequenceNumber, TargetedNotification[] targetedNotifications)
          建構一個通知查詢結果。
 
方法摘要
 long getEarliestSequenceNumber()
          返回快取記憶體中保留的最早通知的序列號。
 long getNextSequenceNumber()
          返回下一個可供查詢使用的通知的序列號。
 TargetedNotification[] getTargetedNotifications()
          返回查詢到的通知以及相應的偵聽器。
 String toString()
          返回該物件的字元串表示形式。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

建構子詳細資訊

NotificationResult

public NotificationResult(long earliestSequenceNumber,
                          long nextSequenceNumber,
                          TargetedNotification[] targetedNotifications)

建構一個通知查詢結果。

參數:
earliestSequenceNumber - 快取記憶體中仍保留的最早通知的序列號。
nextSequenceNumber - 下一個可供查詢使用的通知的序列號。
targetedNotifications - 查詢得到的通知以及相應的偵聽器。此陣列可以為空。
拋出:
IllegalArgumentException - 如果 targetedNotifications 為 null,或者 earliestSequenceNumbernextSequenceNumber 為負。
方法詳細資訊

getEarliestSequenceNumber

public long getEarliestSequenceNumber()
返回快取記憶體中保留的最早通知的序列號。

返回:
快取記憶體中保留的最早通知的序列號。

getNextSequenceNumber

public long getNextSequenceNumber()
返回下一個可供查詢使用的通知的序列號。

返回:
下一個可供查詢使用的通知的序列號。

getTargetedNotifications

public TargetedNotification[] getTargetedNotifications()
返回查詢到的通知以及相應的偵聽器。

返回:
查詢得到的通知以及相應的偵聽器。此陣列可以為空。

toString

public String toString()
返回該物件的字元串表示形式。結果應是一個簡明而豐富的表示形式,它方便人們閱讀。

覆寫:
類別 Object 中的 toString
返回:
該物件的字元串表示形式。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only