You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2007/03/28 13:30:15 UTC

svn commit: r523283 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/DestinationViewMBean.java

Author: jstrachan
Date: Wed Mar 28 04:30:14 2007
New Revision: 523283

URL: http://svn.apache.org/viewvc?view=rev&rev=523283
Log:
updated javadoc

Modified:
    activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/DestinationViewMBean.java

Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/DestinationViewMBean.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/DestinationViewMBean.java?view=diff&rev=523283&r1=523282&r2=523283
==============================================================================
--- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/DestinationViewMBean.java (original)
+++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/jmx/DestinationViewMBean.java Wed Mar 28 04:30:14 2007
@@ -39,27 +39,37 @@
     public void resetStatistics();
 
     /**
+     * Returns the number of messages that have been sent to the destination.
+     *
      * @return The number of messages that have been sent to the destination.
      */
     public long getEnqueueCount();
     
     /**
+     * Returns the number of messages that have been delivered (potentially not acknowledged) to consumers.
+     *
      * @return The number of messages that have been delivered (potentially not acknowledged) to consumers.
      */
     public long getDispatchCount();
     
     /**
+     * Returns the number of messages that have been acknowledged from the destination.
+     *
      * @return The number of messages that have been acknowledged from the destination.
      */
     public long getDequeueCount();
 
     /**
-     * @return The number of consmers subscribed to messages from this destination.
+     * Returns the number of consumers subscribed this destination.
+     *
+     * @return The number of consumers subscribed this destination.
      */
     public long getConsumerCount();
 
     /**
-     * @return The number of messages being buffered by this destination
+     * Returns the number of messages in this destination which are yet to be consumed
+     *
+     * @return Returns the number of messages in this destination which are yet to be consumed
      */
     public long getQueueSize();