private void ClearNotifiers()
 {
     NotifyTrackSolutionHandlers   = null;
     NotifySectorHandlers          = null;
     NotifySequenceHandlers        = null;
     NotifySequenceSegmentHandlers = null;
 }
Example #2
0
 public void RemoveNotifySectorHandler(OnNotifySectorHandler handler)
 {
     _trackSolutionContainer.NotifySectorHandlers -= handler;
 }
Example #3
0
 public void AddNotifySectorHandler(OnNotifySectorHandler handler)
 {
     _trackSolutionContainer.NotifySectorHandlers += handler;
 }