Пример #1
0
 public void AdminThread(Communicator c)
 {
     c.SetValueManager (this._vm);
     bool threadstarted = true;
     while (threadstarted) {
         Telegram t = c.LastTelegram;
         if (t != null) {
             //Console.WriteLine ("Admin: " + t.ToString ());
             switch (t.keyWord) {
             case "SHUTDOWN":
                 this.ShutDown ();
             }
         }
     }
 }