Exemple #1
0
 /// <summary>
 /// Unsubbscribe to the log-event delegating to the observer.
 /// </summary>
 public void Unsubscribe()
 {
     m_NotifyLogger -= NotifyLogger;
 }
Exemple #2
0
 /// <summary>
 /// Unsubscribe to the log-event delegating to the observer.
 /// </summary>
 public void Detach()
 {
     m_NotifyLogger -= NotifyLogger;
     m_NotifyProgress -= NotifyProgress;
 }
Exemple #3
0
 /// <summary>
 /// Subscribe to the log-event delegating to the observer.
 /// </summary>
 public void Subscribe()
 {
     m_NotifyLogger += NotifyLogger;
 }
Exemple #4
0
 /// <summary>
 /// Subscribe to the log-event delegating to the observer.
 /// </summary>
 public void Attach()
 {
     m_NotifyLogger += NotifyLogger;
     m_NotifyProgress += NotifyProgress;
 }