NServiceBus.DelayedRetryExecutor.DelayedRetryExecutor C# (CSharp) Method

DelayedRetryExecutor() public method

public DelayedRetryExecutor ( string endpointInputQueue, IDispatchMessages dispatcher, string timeoutManagerAddress = null ) : System
endpointInputQueue string
dispatcher IDispatchMessages
timeoutManagerAddress string
return System
        public DelayedRetryExecutor(string endpointInputQueue, IDispatchMessages dispatcher, string timeoutManagerAddress = null)
        {
            this.timeoutManagerAddress = timeoutManagerAddress;
            this.dispatcher = dispatcher;
            this.endpointInputQueue = endpointInputQueue;
        }
DelayedRetryExecutor