예제 #1
0
 public static void ExecuteThread()
 {
     while (_RunWorker)
     {
         if (_AerInput.NewInput)
         {
             _AerInput.NewInput = false;
             _AerHandler.DefaultInput_Handler(_AerInput.LastResult);
         }
     }
 }
예제 #2
0
        public static void ExecuteThread()
        {
            _AerHandler = new AerHandler(AppDomain.CurrentDomain.BaseDirectory + @"\Apps\AER\json\");
            _AerInput   = new AerInput(_AerHandler, AppDomain.CurrentDomain.BaseDirectory + @"\Apps\AER\Grammars\");

            while (_RunWorker)
            {
                if (_AerInput.NewInput)
                {
                    _AerInput.NewInput = false;
                    _AerHandler.DefaultInput_Handler(_AerInput.LastResult);
                }
            }
        }