com.hazelcast.monitor
Interface LocalQueueStats

All Superinterfaces:
LocalInstanceStats<LocalQueueOperationStats>
All Known Implementing Classes:
LocalQueueStatsImpl

public interface LocalQueueStats
extends LocalInstanceStats<LocalQueueOperationStats>

Local queue statistics.


Method Summary
 long getAveAge()
          Returns the average age of the items in this member.
 int getBackupItemCount()
          Returns the number of backup items in this member.
 long getMaxAge()
          Returns the max age of the items in this member.
 long getMinAge()
          Returns the min age of the items in this member.
 int getOwnedItemCount()
          Returns the number of owned items in this member.
 
Methods inherited from interface com.hazelcast.monitor.LocalInstanceStats
getOperationStats
 

Method Detail

getOwnedItemCount

int getOwnedItemCount()
Returns the number of owned items in this member.

Returns:
number of owned items.

getBackupItemCount

int getBackupItemCount()
Returns the number of backup items in this member.

Returns:
number of backup items.

getMinAge

long getMinAge()
Returns the min age of the items in this member.

Returns:
min age

getMaxAge

long getMaxAge()
Returns the max age of the items in this member.

Returns:
max age

getAveAge

long getAveAge()
Returns the average age of the items in this member.

Returns:
average age


Copyright © 2008-2012 Hazelcast, Inc. All Rights Reserved.