public RabbitMQMemoryBus(IRabbitMQChannelFactory channelFactory, RabbitMQOptions options,
                          ISubscriptionManager subscriptionManager, IIntegrationEventAggregation integrationEventAggregation)
 {
     _channelFactory              = channelFactory;
     _subscriptionManager         = subscriptionManager;
     _integrationEventAggregation = integrationEventAggregation;
     _queueName = options.QueueName;
     Logger     = NullLogger <RabbitMqChannelFactory> .Instance;
     InitializeQueue();
 }
Exemple #2
0
 public RabbitMQBus(IRabbitMQChannelFactory channelFactory)
 {
     _channelFactory = channelFactory;
 }