/// <summary>
 /// Fire up the FSM
 /// </summary>
 public void Start()
 {
     if (!Active)
     {
         Active = true;
         MainWorker.Start();
         StateWatcherWorker.Start();
     }
 }