1 18 package org.apache.activemq.broker.jmx; 19 20 import org.apache.activemq.Service; 21 22 public interface ConnectionViewMBean extends Service { 23 26 public boolean isSlow(); 27 28 31 public boolean isBlocked(); 32 33 36 public boolean isConnected(); 37 38 41 public boolean isActive(); 42 43 46 public int getDispatchQueueSize(); 47 48 51 public void resetStatistics(); 52 53 58 public long getEnqueueCount(); 59 60 65 public long getDequeueCount(); 66 67 72 public String getRemoteAddress(); 73 74 } 75 | Popular Tags |