public static IHostConfiguration UseMessageProcessorProvider(this IHostConfiguration configuration, IMessageProcessorProvider provider)
 {
     configuration.MessageProcessorProvider = provider;
     return(configuration);
 }
Ejemplo n.º 2
0
 public MessageProcessor(IMessageProcessorProvider processorProvider)
 {
     _processorProvider = processorProvider;
 }