Esempio n. 1
0
 private void RegisterConsumerType(IReceiveEndpointConfigurator receiveEndpointConfigurator, Type consumerType)
 {
     _logger.Debug($"Register {consumerType.FullName} using {_consumerFactory.GetType().FullName}");
     receiveEndpointConfigurator.Consumer(consumerType, _consumerFactory.Create);
 }