/// <summary>
 /// Pour dispatch un événements immediatement (hack)
 /// </summary>
 public void Interrupt(IEvent triggeredEvent)
 {
     Application.Current.Dispatcher.Invoke(() => EventTreshold?.Invoke(triggeredEvent));
 }
 /// <summary>
 /// Pour dispatch un événements
 /// </summary>
 public void Notice(IEvent triggeredEvent)
 {
     Application.Current.Dispatcher.BeginInvoke(new Action(() => EventTreshold?.Invoke(triggeredEvent)));
 }