コード例 #1
0
ファイル: CommandDispatcher.cs プロジェクト: somdoron/NetMQ4
        public static void SendOwn(Own destination, Own child)
        {
            destination.IncreaseSequenceNumber();

            var command = new OwnCommand(destination, child);
            SendCommand(command);
        }
コード例 #2
0
ファイル: BaseObject.cs プロジェクト: somdoron/NetMQ4
 internal virtual void Process(OwnCommand command)
 {
     throw new NotImplementedException();
 }