Ejemplo n.º 1
0
 protected async Task TrackCommandAsync <TCommand>(string queueName, string commandName, CommandContext <TCommand> commandContext)
     where TCommand : ICommand
 {
     try
     {
         await _amqpClient.SendMessageAsync(queueName : queueName, message : commandContext.Command,
                                            basicProperties : new BasicProperties
         {
             Type          = commandName,
             CorrelationId = commandContext.Id.ToString("D"),
             Headers       = commandContext.Metadata,
         }
                                            );
     }
     catch (Exception e)
     {
         throw e;
     }
 }