private void ClearNotifiers()
 {
     NotifyTrackSolutionHandlers   = null;
     NotifySectorHandlers          = null;
     NotifySequenceHandlers        = null;
     NotifySequenceSegmentHandlers = null;
 }
Ejemplo n.º 2
0
 public void RemoveNotifySequenceHandler(OnNotifySequenceHandler handler)
 {
     _trackSolutionContainer.NotifySequenceHandlers -= handler;
 }
Ejemplo n.º 3
0
 public void AddNotifySequenceHandler(OnNotifySequenceHandler handler)
 {
     _trackSolutionContainer.NotifySequenceHandlers += handler;
 }