CRL.CacheServer.TcpPoolClient.TcpPoolClient C# (CSharp) Method

TcpPoolClient() public method

连接池形式的Client
public TcpPoolClient ( string _server, int _port ) : System
_server string
_port int
return System
        public TcpPoolClient(string _server,int _port)
        {
            server = _server;
            port = _port;
            thread = new Thread(new ThreadStart(threadStart));
            thread.Start();
        }