1 20 package org.apache.mina.integration.jmx; 21 22 26 public interface IoServiceManagerMBean { 27 31 int getManagedSessionCount(); 32 33 37 void startCollectingStats(int millisecondsPolling); 38 39 42 void stopCollectingStats(); 43 44 48 float getTotalByteReadThroughput(); 49 50 54 float getTotalByteWrittenThroughput(); 55 56 60 float getTotalMessageReadThroughput(); 61 62 66 float getTotalMessageWrittenThroughput(); 67 68 72 float getAverageByteReadThroughput(); 73 74 78 float getAverageByteWrittenThroughput(); 79 80 84 float getAverageMessageReadThroughput(); 85 86 90 float getAverageMessageWrittenThroughput(); 91 92 95 void closeAllSessions(); 96 97 } | Popular Tags |