public static void ExecuteThread() { while (_RunWorker) { if (_AerInput.NewInput) { _AerInput.NewInput = false; _AerHandler.InputHandler(_AerInput.LastResult); } Thread.Sleep(10); //Keep CPU usage down until we handle responses async } }
public static void ExecuteThread() { AerTalk talk = new AerTalk(); AerDB data = new AerDB(AppDomain.CurrentDomain.BaseDirectory + @"\Apps\AER\json\"); Personality person = new Personality(talk, data); _AerHandler = new AerHandler(data, person); _AerInput = new AerInput(AppDomain.CurrentDomain.BaseDirectory + @"\Apps\AER\Grammars\", person.GrammarLoaded_Handler); while (_RunWorker) { if (_AerInput.NewInput) { _AerInput.NewInput = false; _AerHandler.InputHandler(_AerInput.LastResult); } } }
public void ExecuteThread() { AerDB data = new AerDB(@"json\"); AerTalk talk = new AerTalk(); Personality person = new Personality(talk, data); AerHandler handler = new AerHandler(data, person); //I know this is bad, but there's no good way to get the delegate surfaced out of AerInput in to AerTalk yet. // This could be solved with a service registry, but I haven't thought that through yet AerInput input = new AerInput(@"Grammars\", person.GrammarLoaded_Handler); while (_RunWorker) { if (input.NewInput) { input.NewInput = false; handler.InputHandler(input.LastResult); } Thread.Sleep(10); //Keep CPU usage down until we handle responses async } }