Пример #1
0
 public KafkaBus(KafkaOptions options, ISubscriptionManager subscriptionManager,
                 IntegrationEventHandlerFactory eventHandlerFactory)
 {
     _options             = options;
     _subscriptionManager = subscriptionManager;
     _eventHandlerFactory = eventHandlerFactory;
     Logger = NullLogger <KafkaBus> .Instance;
 }
Пример #2
0
 public IntegrationEventAggregation(IntegrationEventHandlerFactory eventHandlerFactory,
                                    ISubscriptionManager subscriptionManager)
 {
     _eventHandlerFactory = eventHandlerFactory;
     _subscriptionManager = subscriptionManager;
 }