Package com.hazelcast.topic
Interface LocalTopicStats
-
- All Superinterfaces:
com.hazelcast.instance.LocalInstanceStats
public interface LocalTopicStats extends com.hazelcast.instance.LocalInstanceStats
Local topic statistics to be used byMemberState
implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCreationTime()
Returns the creation time of this topic on this memberlong
getPublishOperationCount()
Returns the total number of published messages of this topic on this memberlong
getReceiveOperationCount()
Returns the total number of received messages of this topic on this member
-
-
-
Method Detail
-
getCreationTime
long getCreationTime()
Returns the creation time of this topic on this member- Specified by:
getCreationTime
in interfacecom.hazelcast.instance.LocalInstanceStats
- Returns:
- creation time of this topic on this member
-
getPublishOperationCount
long getPublishOperationCount()
Returns the total number of published messages of this topic on this member- Returns:
- total number of published messages of this topic on this member
-
getReceiveOperationCount
long getReceiveOperationCount()
Returns the total number of received messages of this topic on this member- Returns:
- total number of received messages of this topic on this member
-
-