javax.management.j2ee.statistics
Interface JMSSessionStats

All Superinterfaces:
Stats (src)
All Known Implementing Classes:
JMSSessionStatsImpl (src)

public interface JMSSessionStats
extends Stats (src)

Specifies the statistics provided by a JMS session.


Method Summary
 JMSConsumerStats (src) [] getConsumers()
          Returns an array of JMSConsumerStats that provide statistics about the message consumers associated with the referencing JMS session statistics.
 CountStatistic (src) getDurableSubscriptionCount()
          Number of durable subscriptions.
 CountStatistic (src) getExpiredMessageCount()
          Number of expired messages.
 CountStatistic (src) getMessageCount()
          Number of messages exchanged.
 TimeStatistic (src) getMessageWaitTime()
          Time spent by a message before being delivered.
 CountStatistic (src) getPendingMessageCount()
          Number of pending messages.
 JMSProducerStats (src) [] getProducers()
          Returns an array of JMSProducerStats that provide statistics about the message producers associated with the referencing JMS session statistics.
 
Methods inherited from interface javax.management.j2ee.statistics.Stats (src)
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getProducers

public JMSProducerStats (src) [] getProducers()
Returns an array of JMSProducerStats that provide statistics about the message producers associated with the referencing JMS session statistics.


getConsumers

public JMSConsumerStats (src) [] getConsumers()
Returns an array of JMSConsumerStats that provide statistics about the message consumers associated with the referencing JMS session statistics.


getMessageCount

public CountStatistic (src)  getMessageCount()
Number of messages exchanged.


getPendingMessageCount

public CountStatistic (src)  getPendingMessageCount()
Number of pending messages.


getExpiredMessageCount

public CountStatistic (src)  getExpiredMessageCount()
Number of expired messages.


getMessageWaitTime

public TimeStatistic (src)  getMessageWaitTime()
Time spent by a message before being delivered.


getDurableSubscriptionCount

public CountStatistic (src)  getDurableSubscriptionCount()
Number of durable subscriptions.