コード例 #1
0
 public SynchronousCommandBusDecorator(ICommandBus commandBus)
 {
     this.commandBus = commandBus;
     this.commandDispatcher = new CommandDispatcher();
 }
コード例 #2
0
 public CommandProcessor(IMessageReceiver receiver, ITextSerializer textSerializer)
     : base(receiver, textSerializer)
 {
     this.commandDispatcher = new CommandDispatcher();
 }