예제 #1
0
 /// <summary> Adds a general command strategy to the send queue. This will be executed on every enqueued and dequeued command.  </summary>
 /// <param name="generalStrategy"> The general strategy for the send queue. </param>
 public void AddSendCommandStrategy(GeneralStrategy generalStrategy)
 {
     _sendCommandQueue.AddGeneralStrategy(generalStrategy);
 }
예제 #2
0
 /// <summary> Adds a general command strategy to the receive queue. This will be executed on every enqueued and dequeued command.  </summary>
 /// <param name="generalStrategy"> The general strategy for the receive queue. </param>
 public void AddReceiveCommandStrategy(GeneralStrategy generalStrategy) 
 {
     _receiveCommandQueue.AddGeneralStrategy(generalStrategy);
 }