Package org.glassfish.j2ee.statistics
Interface JMSSessionStats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JMSConsumerStats[]getConsumers()Returns an array of JMSConsumerStats that provide statistics about the message consumers associated with the referencing JMS session statistics.CountStatisticgetDurableSubscriptionCount()Number of durable subscriptions.CountStatisticgetExpiredMessageCount()Number of expired messages.CountStatisticgetMessageCount()Number of messages exchanged.TimeStatisticgetMessageWaitTime()Time spent by a message before being delivered.CountStatisticgetPendingMessageCount()Number of pending messages.JMSProducerStats[]getProducers()Returns an array of JMSProducerStats that provide statistics about the message producers associated with the referencing JMS session statistics.-
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
-
-
-
Method Detail
-
getProducers
JMSProducerStats[] getProducers()
Returns an array of JMSProducerStats that provide statistics about the message producers associated with the referencing JMS session statistics.
-
getConsumers
JMSConsumerStats[] getConsumers()
Returns an array of JMSConsumerStats that provide statistics about the message consumers associated with the referencing JMS session statistics.
-
getMessageCount
CountStatistic getMessageCount()
Number of messages exchanged.
-
getPendingMessageCount
CountStatistic getPendingMessageCount()
Number of pending messages.
-
getExpiredMessageCount
CountStatistic getExpiredMessageCount()
Number of expired messages.
-
getMessageWaitTime
TimeStatistic getMessageWaitTime()
Time spent by a message before being delivered.
-
getDurableSubscriptionCount
CountStatistic getDurableSubscriptionCount()
Number of durable subscriptions.
-
-