public ConsoleLoggerDispatcher(IAsyncCommandDispatcher dispatcher)
 {
     this.dispatcher = dispatcher;
 }
Пример #2
0
 public DemonstrationController(IAsyncCommandDispatcher commandDispatcher, IAsyncQueryDispatcher queryDispatcher, ILogger logger)
 {
     CommandDispatcher = commandDispatcher;
     QueryDispatcher = queryDispatcher;
     Logger = logger;
 }
Пример #3
0
 public ProductController(IAsyncCommandDispatcher commandDispatcher, IAsyncQueryDispatcher queryDispatcher)
 {
     CommandDispatcher = commandDispatcher;
     QueryDispatcher = queryDispatcher;
 }
 public ConsoleLoggerDispatcher(IAsyncCommandDispatcher dispatcher)
 {
     this.dispatcher = dispatcher;
 }
 public AsyncClientHandlerFactory(IAsyncCommandDispatcher dispatcher) {
     _dispatcher = dispatcher;
 }
 public AsyncClientHandler(Guid clientId, Socket socket, IAsyncCommandDispatcher dispatcher, IClacksInstrumentation instrumentation, Action<IClientHandler> removeCallback)
     : base(clientId, socket, instrumentation, removeCallback) {
     _dispatcher = dispatcher;
 }