1 7 package org.jboss.remoting.transport.socket; 8 9 import org.jboss.remoting.ServerInvokerMBean; 10 11 14 public interface SocketServerInvokerMBean extends ServerInvokerMBean 15 { 16 17 20 void start() throws java.io.IOException ; 21 22 25 void stop(); 26 27 32 int getSocketTimeout(); 33 34 39 void setSocketTimeout(int time); 40 41 int getCurrentThreadPoolSize(); 42 43 int getCurrentClientPoolSize(); 44 45 50 int getNumAcceptThreads(); 51 52 57 void setNumAcceptThreads(int size); 58 59 64 int getMaxPoolSize(); 65 66 71 void setMaxPoolSize(int maxPoolSize); 72 73 78 int getServerBindPort(); 79 80 int getBacklog(); 81 82 void setBacklog(int backlog); 83 84 } 85 | Popular Tags |