public async Task Listen(Socket client) { var connectionHandler = new ConnectionHandler(client, this.serverRoutingTable); connectionHandler.ProcessRequest(); }
private void Listen(Socket client) { ConnectionHandler connectionHandler = new ConnectionHandler(client, this.serverRoutingTable); connectionHandler.ProcessRequest(); }