updated javadoc

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@523283 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-03-28 11:30:14 +00:00
parent 9dccfa4a8a
commit 2632922be8
1 changed files with 12 additions and 2 deletions

View File

@ -39,27 +39,37 @@ public interface DestinationViewMBean {
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();