1 18 package org.apache.activemq.broker.jmx; 19 20 import org.apache.activemq.Service; 21 22 public interface ConnectorViewMBean extends Service { 23 24 27 public void resetStatistics(); 28 29 32 public void enableStatistics(); 33 34 37 public void disableStatistics(); 38 39 44 public boolean isStatisticsEnabled(); 45 46 51 public long getEnqueueCount(); 52 53 58 public long getDequeueCount(); 59 60 } 61 | Popular Tags |