Mycroft.Dispatcher.HandleNewClientConnection C# (CSharp) Method

HandleNewClientConnection() private method

Put a newly connected app in its own thread in the app thread pool
private HandleNewClientConnection ( CommandConnection connection ) : void
connection Mycroft.App.CommandConnection
return void
        private void HandleNewClientConnection(CommandConnection connection)
        {
            var instance = new AppInstance(connection, this);
            instance.Listen();
        }