Esempio n. 1
0
        public static void SendPlug(Own destination, bool increaseSequenceNumber = true)
        {
            if (increaseSequenceNumber)
                destination.IncreaseSequenceNumber();

            var command = new PlugCommand(destination);
            SendCommand(command);
        }
Esempio n. 2
0
 internal virtual void Process(PlugCommand command)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 internal override void Process(PlugCommand command)
 {
     base.Process(command);
 }