ACR_ServerCommunicator.ACR_ServerCommunicator.CommandDispatchLoop C# (CSharp) Method

CommandDispatchLoop() private method

This method periodically runs as a DelayCommand continuation. Its purpose is to check for commands from the worker thread and dispatch them as appropriate.
private CommandDispatchLoop ( ) : void
return void
        private void CommandDispatchLoop()
        {
            DispatchPeriodicEvents();

            //
            // Start a new dispatch cycle going.
            //

            DelayCommand(COMMAND_DISPATCH_INTERVAL, delegate() { CommandDispatchLoop(); });
        }
ACR_ServerCommunicator