Exemplo n.º 1
0
 /// <summary>
 /// Put a newly connected app in its own thread in the app thread pool
 /// </summary>
 /// <param name="connection"></param>
 private void HandleNewClientConnection(CommandConnection connection)
 {
     var instance = new AppInstance(connection, this);
     instance.Listen();
 }