Пример #1
0
        public static void SendPlug(Own destination, bool increaseSequenceNumber = true)
        {
            if (increaseSequenceNumber)
                destination.IncreaseSequenceNumber();

            var command = new PlugCommand(destination);
            SendCommand(command);
        }
Пример #2
0
 internal virtual void Process(PlugCommand command)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 internal override void Process(PlugCommand command)
 {
     base.Process(command);
 }