コード例 #1
0
 public AsyncServer(Int32 numMaxConnections, Int32 bufferSize)
 {
     this.numMaxConnections = numMaxConnections;
     this.clientPool        = new AsyncSocketPool(numMaxConnections);
     isStart = false;
 }
コード例 #2
0
ファイル: AsyncServer.cs プロジェクト: Hairow/IOCP_server
 public AsyncServer(Int32 numMaxConnections, Int32 bufferSize)
 {
     this.numMaxConnections = numMaxConnections;
     this.clientPool = new AsyncSocketPool(numMaxConnections);
     isStart = false;
 }