Air.SimpleAirCommandProcessor.Start C# (CSharp) Method

Start() public method

Starts this instance.
public Start ( ) : void
return void
        public void Start()
        {
            if (IsRunning)
            {
                return;
            }

            IsRunning = true;
            while (IsRunning)
            {
                throw new NotImplementedException();

                // var command = await _commandQueue.ReceiveAsync();
                // await command.Execute(_graph);
            }
        }