public MessageDrivenSubscribeTerminator(SubscriptionRouter subscriptionRouter, string subscriberAddress, string subscriberEndpoint, IDispatchMessages dispatcher)
 {
     this.subscriptionRouter = subscriptionRouter;
     this.subscriberAddress  = subscriberAddress;
     this.subscriberEndpoint = subscriberEndpoint;
     this.dispatcher         = dispatcher;
 }
 public MessageDrivenUnsubscribeTerminator(SubscriptionRouter subscriptionRouter, string replyToAddress, string endpoint, IDispatchMessages dispatcher)
 {
     this.subscriptionRouter = subscriptionRouter;
     this.replyToAddress     = replyToAddress;
     this.endpoint           = endpoint;
     this.dispatcher         = dispatcher;
 }
Exemple #3
0
 public MigrationUnsubscribeTerminator(ISubscriptionManager subscriptionManager, MessageMetadataRegistry messageMetadataRegistry, SubscriptionRouter subscriptionRouter, IMessageDispatcher dispatcher, string replyToAddress, string endpoint)
 {
     this.subscriptionManager     = subscriptionManager;
     this.messageMetadataRegistry = messageMetadataRegistry;
     this.subscriptionRouter      = subscriptionRouter;
     this.dispatcher     = dispatcher;
     this.replyToAddress = replyToAddress;
     this.endpoint       = endpoint;
 }
Exemple #4
0
 public MigrationUnsubscribeTerminator(IManageSubscriptions subscriptionManager, SubscriptionRouter subscriptionRouter, IDispatchMessages dispatcher, string replyToAddress, string endpoint)
 {
     this.subscriptionManager = subscriptionManager;
     this.subscriptionRouter  = subscriptionRouter;
     this.dispatcher          = dispatcher;
     this.replyToAddress      = replyToAddress;
     this.endpoint            = endpoint;
 }
 public MigrationSubscribeTerminator(IManageSubscriptions subscriptionManager, SubscriptionRouter subscriptionRouter, IDispatchMessages dispatcher, string subscriberAddress, string subscriberEndpoint)
 {
     this.subscriptionManager = subscriptionManager;
     this.subscriptionRouter  = subscriptionRouter;
     this.dispatcher          = dispatcher;
     this.subscriberAddress   = subscriberAddress;
     this.subscriberEndpoint  = subscriberEndpoint;
 }