Exemple #1
0
 public TransactionInfo(int deviceId, AndonCommand command, List <Byte> data)
 {
     this.deviceId = deviceId;
     this.command  = command;
     this.data     = new List <byte>();
     if (data != null)
     {
         this.data.AddRange(data);
     }
 }
Exemple #2
0
 public void addTransaction(int deviceId, AndonCommand command, List <Byte> data)
 {
     transactionQ.Enqueue(new TransactionInfo(deviceId, command, data));
 }
 public TransactionInfo(int deviceId, AndonCommand command, List<Byte> data)
 {
     this.deviceId = deviceId;
     this.command = command;
     this.data = data;
 }
Exemple #4
0
 public TransactionInfo(int deviceId, AndonCommand command, List <Byte> data)
 {
     this.deviceId = deviceId;
     this.command  = command;
     this.data     = data;
 }
 public TransactionInfo(int deviceId, AndonCommand command, List<Byte> data)
 {
     this.deviceId = deviceId;
     this.command = command;
     this.data = new List<byte>();
     if (data != null)
         this.data.AddRange(data);
 }
 public void addTransaction(int deviceId, AndonCommand command, List<Byte> data)
 {
     transactionQ.Enqueue(new TransactionInfo(deviceId, command, data));
 }