Exemple #1
0
 public NetManager(int initCapacity = 100)
 {
     _clients   = new Dictionary <Socket, ClientState>(initCapacity);
     _checkRead = new List <Socket>(initCapacity);
     _heartbeat = new HeartbeatMgr(this);
 }
 public NetManager()
 {
     _heartbeat = new HeartbeatMgr(this);
 }