Ejemplo n.º 1
0
 public void SubscribeToSystem(ISubSystemHost sender)
 {
     _subSystemHost = sender;
 }
Ejemplo n.º 2
0
 /// <summary>Subscribe to receive system updates from this system.</summary>
 /// <param name="sender">The subscribing system; generally use 'this'.</param>
 public void SubscribeToSystem(ISubSystemHost sender)
 {
 }
Ejemplo n.º 3
0
 /// <summary>Subscribe to receive system updates from this system.</summary>
 /// <param name="sender">The subscribing system; generally use 'this'.</param>
 public void SubscribeToSystem(ISubSystemHost sender)
 {
     this.subSystemHost = sender;
 }
Ejemplo n.º 4
0
 /// <summary>Removes subscriptions from the system.</summary>
 public void UnsubscribeToSystem()
 {
     this.host = null;
 }
Ejemplo n.º 5
0
 /// <summary>Initializes a new instance of the CommandProcessor class.</summary>
 /// <param name="host">The host of this CommandProcessor SubSystem.</param>
 public CommandProcessor(ISubSystemHost host)
 {
     this.host = host;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Unsubscribe from currently subscribed system.
 /// </summary>
 public void UnsubscribeToSystem()
 {
     subSystemHost = null;
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Initializes a new instance of the CommandProcessor class.
 /// </summary>
 /// <param name="host">The host of this CommandProcessor SubSystem.</param>
 public CommandProcessor(ISubSystemHost host)
 {
     this.host = host;
 }