Ejemplo n.º 1
0
 public void Unregister(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Remove(component);
     });
 }
Ejemplo n.º 2
0
 public void Register(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Add(component);
         component.APIStateChanged(this, state);
     });
 }
Ejemplo n.º 3
0
 public void Unregister(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Remove(component);
     });
 }
Ejemplo n.º 4
0
 public void Register(IOnlineComponent component)
 {
     Scheduler.Add(delegate
     {
         components.Add(component);
         component.APIStateChanged(this, state);
     });
 }
Ejemplo n.º 5
0
 public void Register(IOnlineComponent component)
 {
 }
Ejemplo n.º 6
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);
 }
Ejemplo n.º 7
0
 public void Unregister(IOnlineComponent component)
 {
     Schedule(() => components.Remove(component));
 }