Example #1
0
        private async Task SendToProcessor(IEndpointConfiguration ep, IMessage[] toSend)
        {
            this.LogDebug($"Sending {toSend.Length} messages to {ep.Id}");
            await ep.AddToProcessing(toSend).ConfigureFalse();

            _auditor.SentToLocal(ep.Id, toSend);
        }
Example #2
0
 private async Task SendToProcessor(IEndpointConfiguration ep, IMessage[] toSend)
 {
     this.LogDebug($"Sending {toSend.Length} messages to {ep.Id}");
     await ep.AddToProcessing(toSend).ConfigureFalse();
     _auditor.SentToLocal(ep.Id, toSend);
 }