public ReprocessIssueErrorsCommand(IAuthorisationManager authorisationManager,
                                    IGetApplicationErrorsQuery getApplicationErrorsQuery,
                                    ErrorditeConfiguration configuration,
                                    IReceiveErrorCommand receiveErrorCommand)
 {
     _authorisationManager      = authorisationManager;
     _getApplicationErrorsQuery = getApplicationErrorsQuery;
     _configuration             = configuration;
     _receiveErrorCommand       = receiveErrorCommand;
 }
 public ProcessIncomingExceptionCommand(IGetApplicationByTokenQuery getApplicationByToken,
                                        ErrorditeConfiguration configuration,
                                        IReceiveErrorCommand receiveErrorCommand,
                                        IExceptionRateLimiter exceptionRateLimiter,
                                        IMessageSender sender)
 {
     _getApplicationByToken = getApplicationByToken;
     _configuration         = configuration;
     _receiveErrorCommand   = receiveErrorCommand;
     _exceptionRateLimiter  = exceptionRateLimiter;
     _sender = sender;
 }
Beispiel #3
0
 public ErrorController(IReceiveErrorCommand receiveErrorCommand)
 {
     _receiveErrorCommand = receiveErrorCommand;
 }
 public ReceiveErrorConsumer(IReceiveErrorCommand receiveErrorCommand)
 {
     _receiveErrorCommand = receiveErrorCommand;
 }