Beispiel #1
0
 public void Register(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Add(component);
         component.APIStateChanged(this, state);
     });
 }
Beispiel #2
0
 public void Register(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Add(component);
         component.APIStateChanged(this, state);
     });
 }
Beispiel #3
0
 /// <summary>
 /// Register a component to receive API events.
 /// Fires <see cref="IOnlineComponent.APIStateChanged"/> once immediately to ensure a correct state.
 /// </summary>
 /// <param name="component"></param>
 public void Register(IOnlineComponent component)
 {
     Schedule(() => components.Add(component));
     component.APIStateChanged(this, state);
 }