Exemplo n.º 1
0
 public NetManager(int initCapacity = 100)
 {
     _clients   = new Dictionary <Socket, ClientState>(initCapacity);
     _checkRead = new List <Socket>(initCapacity);
     _heartbeat = new HeartbeatMgr(this);
 }
Exemplo n.º 2
0
 public NetManager()
 {
     _heartbeat = new HeartbeatMgr(this);
 }