Exemple #1
0
 protected AggregateHubCommandHandler(
     IServiceBusWithHandlers bus,
     IExceptionLogger exceptionLogger,
     IDateTime dateTime)
 {
     _bus             = bus;
     _exceptionLogger = exceptionLogger;
     _dateTime        = dateTime;
 }
 protected AggregateCommandHandler(
     IServiceBusTelemetryProperties serviceBusTelemetryProperties,
     IServiceBusWithHandlers bus,
     ICorrelationEventHandler correlationEventHandler,
     IExceptionLogger exceptionLogger,
     IDateTime dateTime)
 {
     _serviceBusTelemetryProperties = serviceBusTelemetryProperties;
     _bus = bus;
     _correlationEventHandler = correlationEventHandler;
     _exceptionLogger         = exceptionLogger;
     _dateTime = dateTime;
 }
Exemple #3
0
 public CommandBus(
     IServiceBusWithHandlers serviceBus)
 {
     _serviceBus = serviceBus;
 }
Exemple #4
0
 public EventBus(IServiceBusWithHandlers serviceBus)
 {
     _serviceBus = serviceBus;
 }
 public HubCommandErrorBus(IServiceBusWithHandlers bus)
 {
     _bus = bus;
 }
Exemple #6
0
 public HubEventErrorBus(IServiceBusWithHandlers bus)
 {
     _bus = bus;
 }