Exemple #1
0
 /// <summary>
 /// Allow the server to be visited by commands
 /// </summary>
 /// <param name="command">The command that will operate on the server</param>
 public void Issue(Command command)
 {
     command.VisitServer(this);
 }
Exemple #2
0
 public void Issue(Command command)
 {
     command.VisitRegistry(this);
 }
Exemple #3
0
 /// <summary>
 /// Applies a command to the registry
 /// </summary>
 /// <param name="command"></param>
 public void Issue(Command command)
 {
     command.VisitDispatcher(this);
 }
Exemple #4
0
 public void PreemptQueue(Command cmd)
 {
     DispatchPreemptStack.Add(cmd);
 }
Exemple #5
0
 public void Enqueue(Command cmd)
 {
     DispatchQueue.Add(cmd);
 }