public SynchronousCommandBusDecorator(ICommandBus commandBus)
 {
     this.commandBus = commandBus;
     this.commandDispatcher = new CommandDispatcher();
 }
Exemplo n.º 2
0
 public CommandProcessor(IMessageReceiver receiver, ITextSerializer textSerializer)
     : base(receiver, textSerializer)
 {
     this.commandDispatcher = new CommandDispatcher();
 }