예제 #1
0
 public async void Listen(Socket client)
 {
     var connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);
     await connectionHandler.ProcessRequestAsync();
 }
예제 #2
0
 public async void Listen(Socket client)
 {
     var connectionHandler = new ConnectionHandler(client, this.handler);
     await connectionHandler.ProcessRequestAsync();
 }
예제 #3
0
        public void Listen(Socket client)
        {
            var connectionHandler = new ConnectionHandler(client, this.routingTable);

            connectionHandler.ProcessRequest();
        }
예제 #4
0
 private async Task ListenAsync(Socket client)
 {
     var connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);
     await connectionHandler.ProcessRequestAsync();
 }
예제 #5
0
        private void Listen(Socket client)
        {
            var connectionHandler = new ConnectionHandler(client, this.serverRoutingTable);

            connectionHandler.ProcessRequest();
        }
예제 #6
0
 public async void ListenLoop(Socket client)
 {
     ConnectionHandler connectionHandler = new ConnectionHandler(client, this.handlerContext);
     await connectionHandler.ProcessRequestAsync();
 }
예제 #7
0
 public async Task ListenLoop(Socket client)
 {
     var connectionHandler = new ConnectionHandler(client, this.requestHandler, this.fileHandler);
     await connectionHandler.ProcessRequestAsync();
 }
예제 #8
0
        public async Task ListenLoopAsync(Socket client)
        {
            var connectionHandler = new ConnectionHandler(client, handler);

            await connectionHandler.ProcessRequestAsync();
        }