/// <summary>Stops and clears all the Queues</summary>
 public static void StopAll()
 {
     foreach (Queue Q in Queues)
     {
         Q.Stop();
     }
     Queues.Clear();
 }