Пример #1
0
 public ResponseList(CommandBase command)
 {
     _command = command;
 }
Пример #2
0
 private bool WriteMessageDirect(CommandBase command)
 {
     //SendCommand(command.Serialized, true);
     SendCommand(command.ToByte(command.AcknowledgmentId, RequestInquiryEnabled), true);
     return(true);
 }
Пример #3
0
 public SurrogateCommand(CommandBase command, Address actualNode)
 {
     _surrogateCommand     = new Common.Protobuf.SurrogateCommand();
     this.WrappedCommand   = command;
     this.ActualTargetNode = actualNode;
 }