private void ClearNotifiers()
 {
     NotifyTrackSolutionHandlers   = null;
     NotifySectorHandlers          = null;
     NotifySequenceHandlers        = null;
     NotifySequenceSegmentHandlers = null;
 }
Beispiel #2
0
 public void RemoveNotifySequenceSegmentHandler(OnNotifySequenceSegmentHandler handler)
 {
     _trackSolutionContainer.NotifySequenceSegmentHandlers -= handler;
 }
Beispiel #3
0
 public void AddNotifySequenceSegmentHandler(OnNotifySequenceSegmentHandler handler)
 {
     _trackSolutionContainer.NotifySequenceSegmentHandlers += handler;
 }