Exemplo n.º 1
0
 public QueueSubscriptionFactory( ISubscriptionManager subscriptions, IDispatcher dispatcher,
                                  IChannelProxyFactory proxyFactory )
 {
     Subscriptions = subscriptions;
     Dispatcher = dispatcher;
     ProxyFactory = proxyFactory;
 }
 public QueueSubscriptionFactory(ISubscriptionManager subscriptions, IDispatcher dispatcher,
                                 IChannelProxyFactory proxyFactory)
 {
     Subscriptions = subscriptions;
     Dispatcher    = dispatcher;
     ProxyFactory  = proxyFactory;
 }
Exemplo n.º 3
0
 public QueueSubscription(
     IChannelProxyFactory proxyFactory,
     IDispatcher dispatcher,
     RabbitEndpoint endpoint )
 {
     ProxyFactory = proxyFactory;
     Dispatcher = dispatcher;
     Endpoint = endpoint;
 }
Exemplo n.º 4
0
 public QueueSubscription(
     IChannelProxyFactory proxyFactory,
     IDispatcher dispatcher,
     RabbitEndpoint endpoint)
 {
     ProxyFactory = proxyFactory;
     Dispatcher   = dispatcher;
     Endpoint     = endpoint;
 }
Exemplo n.º 5
0
 public RabbitChannelFactory( IChannelProxyFactory proxyFactory, IDispatcher dispatcher )
 {
     ProxyFactory = proxyFactory;
     MessageDispatcher = dispatcher;
 }
Exemplo n.º 6
0
 public void Dispose()
 {
     _messageSerializer = null;
     _proxyFactory = null;
     Stop();
 }
Exemplo n.º 7
0
 protected BaseBroker(IChannelProxyFactory proxyFactory, IMessageSerializer messageSerializer)
 {
     _proxyFactory = proxyFactory;
     _messageSerializer = messageSerializer;
 }
Exemplo n.º 8
0
 public RabbitChannelFactory(IChannelProxyFactory proxyFactory, IDispatcher dispatcher)
 {
     ProxyFactory      = proxyFactory;
     MessageDispatcher = dispatcher;
 }
Exemplo n.º 9
0
 public Broker(IChannelProxyFactory proxyFactory, IMessageSerializer messageSerializer) : base(proxyFactory, messageSerializer)
 {
 }