Example #1
0
 private async Task Listen(Socket client)
 {
     ConnectionHandler connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);
     await connectionHandler.ProcessRequestAsync();
 }
Example #2
0
        public async Task Listen(Socket client)
        {
            var connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);

            connectionHandler.ProcessRequest();
        }
Example #3
0
        private void Listen(Socket client)
        {
            ConnectionHandler connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);

            connectionHandler.ProcessRequest();
        }