public AzureServiceBusTopicCreator(ICreateNamespaceManagers createNamespaceManagers, Configure config)
 {
     this.createNamespaceManagers = createNamespaceManagers;
     this.config = config;
 }
 public AzureServiceBusSubscriptionCreator(ICreateNamespaceManagers createNamespaceManagers, Configure config, ICreateTopics topicCreator)
 {
     this.createNamespaceManagers = createNamespaceManagers;
     this.config = config;
     this.topicCreator = topicCreator;
 }
Пример #3
0
 public NamespaceManagerLifeCycleManager(ICreateNamespaceManagers factory)
 {
     this.factory = factory;
 }
 public CreatesMessagingFactories(ICreateNamespaceManagers createNamespaceManagers)
 {
     this.createNamespaceManagers = createNamespaceManagers;
 }