public AsyncServer(Int32 numMaxConnections, Int32 bufferSize)
 {
     this.numMaxConnections = numMaxConnections;
     this.clientPool        = new AsyncSocketPool(numMaxConnections);
     isStart = false;
 }
Exemple #2
0
 public AsyncServer(Int32 numMaxConnections, Int32 bufferSize)
 {
     this.numMaxConnections = numMaxConnections;
     this.clientPool = new AsyncSocketPool(numMaxConnections);
     isStart = false;
 }