Пример #1
0
        public async Task Listen(Socket client)
        {
            var connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);

            connectionHandler.ProcessRequest();
        }
Пример #2
0
        private void Listen(Socket client)
        {
            ConnectionHandler connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);

            connectionHandler.ProcessRequest();
        }