Beispiel #1
0
 public RequestStatusServiceProxy(IRequestStatusService wsRequestStatusService, IHTTPQueuedCommandStatusStorage httpQueuedCommandStatusStorage)
 {
     _wsRequestStatusService         = wsRequestStatusService;
     _httpQueuedCommandStatusStorage = httpQueuedCommandStatusStorage;
 }
 public HTTPQueuedCommandStatusService(IHTTPQueuedCommandStatusStorage commandStatusStorage, IImplProvider implProvider)
 {
     _commandStatusStorage = commandStatusStorage;
     _implProvider         = implProvider;
 }
Beispiel #3
0
 public HTTPQueuedCommandHandlerMediator(IHTTPQueuedCommandStatusStorage commandStatusStorage, EventBusService eventBusService)
 {
     _commandStatusStorage = commandStatusStorage;
     _eventBusService      = eventBusService;
 }
Beispiel #4
0
 public HTTPQueuedCommandHandler(IHTTPQueuedCommandStatusStorage commandStatusStorage, IMediator mediator, ILogger <HTTPQueuedCommandHandler> logger)
 {
     _commandStatusStorage = commandStatusStorage;
     _mediator             = mediator;
     _logger = logger;
 }