mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-3084 - typo in SubscriptionView
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1049466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1355cf5810
commit
c75ff7f163
|
@ -244,7 +244,7 @@ public class SubscriptionView implements SubscriptionViewMBean {
|
|||
/**
|
||||
* @return number of messages that matched the subscription
|
||||
*/
|
||||
public long getDispachedCounter() {
|
||||
public long getDispatchedCounter() {
|
||||
return subscription != null ? subscription.getDispatchedCounter() : 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ public interface SubscriptionViewMBean {
|
|||
* @return number of messages that matched the subscription
|
||||
*/
|
||||
@MBeanInfo("Number of messages that sent to the client.")
|
||||
long getDispachedCounter();
|
||||
long getDispatchedCounter();
|
||||
|
||||
/**
|
||||
* @return number of messages that matched the subscription
|
||||
|
|
|
@ -110,7 +110,7 @@ No connection could be found for ID <c:out value="${requestContext.connectionQue
|
|||
<td><c:out value="${consumer.selector}" /></td>
|
||||
<td><c:out value="${consumer.enqueueCounter}" /></td>
|
||||
<td><c:out value="${consumer.dequeueCounter}" /></td>
|
||||
<td><c:out value="${consumer.dispachedCounter}" /></td>
|
||||
<td><c:out value="${consumer.dispatchedCounter}" /></td>
|
||||
<td><c:out value="${consumer.dispatchedQueueSize}" /></td>
|
||||
<td>
|
||||
<c:out value="${consumer.prefetchSize}" /><br/>
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
<td>${row.selector}</td>
|
||||
<td>${row.enqueueCounter}</td>
|
||||
<td>${row.dequeueCounter}</td>
|
||||
<td>${row.dispachedCounter}</td>
|
||||
<td>${row.dispatchedCounter}</td>
|
||||
<td>${row.dispatchedQueueSize}</td>
|
||||
<td>
|
||||
${row.prefetchSize}<br/>
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
<td>${row.selector}</td>
|
||||
<td>${row.pendingQueueSize}</td>
|
||||
<td>${row.dispatchedQueueSize}</td>
|
||||
<td>${row.dispachedCounter}</td>
|
||||
<td>${row.dispatchedCounter}</td>
|
||||
<td>${row.enqueueCounter}</td>
|
||||
<td>${row.dequeueCounter}</td>
|
||||
<td>
|
||||
|
@ -140,7 +140,7 @@
|
|||
<td>${row.selector}</td>
|
||||
<td>${row.pendingQueueSize}</td>
|
||||
<td>${row.dispatchedQueueSize}</td>
|
||||
<td>${row.dispachedCounter}</td>
|
||||
<td>${row.dispatchedCounter}</td>
|
||||
<td>${row.enqueueCounter}</td>
|
||||
<td>${row.dequeueCounter}</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue