Package org.glassfish.j2ee.statistics
Interface JMSEndpointStats
-
- All Superinterfaces:
Stats
- All Known Subinterfaces:
JMSConsumerStats,JMSProducerStats
public interface JMSEndpointStats extends Stats
Specifies the statistics provided by a JMS message producer or a JMS message consumer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountStatisticgetExpiredMessageCount()Number of messages that expired before delivery.CountStatisticgetMessageCount()Number of messages sent or received.TimeStatisticgetMessageWaitTime()Time spent by a message before being delivered.CountStatisticgetPendingMessageCount()Number of pending messages.-
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
-
-
-
Method Detail
-
getMessageCount
CountStatistic getMessageCount()
Number of messages sent or received.
-
getPendingMessageCount
CountStatistic getPendingMessageCount()
Number of pending messages.
-
getExpiredMessageCount
CountStatistic getExpiredMessageCount()
Number of messages that expired before delivery.
-
getMessageWaitTime
TimeStatistic getMessageWaitTime()
Time spent by a message before being delivered.
-
-