1 28 29 package com.caucho.server.port.mbean; 30 31 34 public interface PortMBean { 35 38 public String getProtocolName(); 39 40 43 public String getHost(); 44 45 48 public int getPort(); 49 50 53 public boolean isActive(); 54 55 58 public int getConnectionMax(); 59 60 63 public int getKeepaliveMax(); 64 65 68 public int getTotalConnectionCount(); 69 70 73 public int getActiveConnectionCount(); 74 75 78 public int getKeepaliveConnectionCount(); 79 80 83 public int getSelectConnectionCount(); 84 85 88 public int getThreadCount(); 89 90 93 public int getIdleThreadCount(); 94 95 98 public int getActiveThreadCount(); 99 100 103 public int getKeepaliveCount(); 104 } 105 | Popular Tags |