public void RunThread(IInstanceTable instanceTable)
 {
     if (this.controllerThread != null)
     {
         this.runThread = true;
         this.controllerThread.Start(instanceTable);
         this.threadInitializedEvent.WaitOne();
     }
 }
        public void RunThread(IInstanceTable instanceTable)
        {
            Debug.WriteLine(string.Format(CultureInfo.CurrentCulture, "WDE: DebugControllerThread.DebugControllerThread():"));
            if (this.controllerThread == null)
                return;

            this.runThread = true;
            this.controllerThread.Start(instanceTable);
            this.threadInitializedEvent.WaitOne();
        }
Пример #3
0
        public void RunThread(IInstanceTable instanceTable)
        {
            Debug.WriteLine(string.Format(CultureInfo.CurrentCulture, "WDE: DebugControllerThread.DebugControllerThread():"));
            if (this.controllerThread == null)
            {
                return;
            }

            this.runThread = true;
            this.controllerThread.Start(instanceTable);
            this.threadInitializedEvent.WaitOne();
        }
 public void RunThread(IInstanceTable instanceTable)
 {
     if (this.controllerThread != null)
     {
         this.runThread = true;
         this.controllerThread.Start(instanceTable);
         this.threadInitializedEvent.WaitOne();
     }
 }