Esempio n. 1
0
 internal AtLeastOnceConsumingPromise(Queue queue,
                                      IConsumedMessageBuilder builder,
                                      ConsumingConfiguration configuration,
                                      Func<ILog> logBuilder)
     : base(queue, builder, configuration, logBuilder)
 {
 }
Esempio n. 2
0
 internal AtLeastOnceConsumingPromise(Queue queue,
                                      IConsumedMessageBuilder builder,
                                      ConsumingConfiguration configuration,
                                      Func <ILog> logBuilder)
     : base(queue, builder, configuration, logBuilder)
 {
 }
Esempio n. 3
0
 internal AtMostOnceConsumerWrapper(IInboundChannel inboundChannel,
                                    IOutboundChannel outboundChannel,
                                    Queue queue,
                                    IConsumedMessageBuilder builder,
                                    ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Esempio n. 4
0
 internal AtMostOnceConsumerWrapper(IInboundChannel inboundChannel,
                                    IOutboundChannel outboundChannel,
                                    Queue queue,
                                    IConsumedMessageBuilder builder,
                                    ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Esempio n. 5
0
 protected ConsumerBase(IModel model,
                        IConsumedMessageBuilder builder,
                        SubscriptionConfiguration configuration)
     : base(model)
 {
     Builder = builder;
     Configuration = configuration;
 }
Esempio n. 6
0
 public FakeConsumerBase(IInboundChannel inboundChannel,
                         IOutboundChannel outboundChannel,
                         Queue queue,
                         IConsumedMessageBuilder builder,
                         ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Esempio n. 7
0
 public FakeConsumerBase(IInboundChannel inboundChannel,
                         IOutboundChannel outboundChannel,
                         Queue queue,
                         IConsumedMessageBuilder builder,
                         ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
 internal LoggedAtLeastOnceConsumer(IInboundChannel inboundChannel,
                                    IOutboundChannel outboundChannel,
                                    Queue queue,
                                    IConsumedMessageBuilder builder,
                                    ConsumingConfiguration configuration,
                                    ILog log)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
     _log = log;
 }
 internal LoggedAtMostOnceConsumer(IInboundChannel inboundChannel,
                                   IOutboundChannel outboundChannel,
                                   Queue queue,
                                   IConsumedMessageBuilder builder,
                                   ConsumingConfiguration configuration,
                                   ILog log)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
     _log = log;
 }
Esempio n. 10
0
 protected internal ConsumingPromise(Queue queue,
                                     IConsumedMessageBuilder builder,
                                     ConsumingConfiguration configuration,
                                     Func<ILog> logBuilder)
 {
     Queue = queue;
     Builder = builder;
     Configuration = configuration;
     LogBuilder = logBuilder;
 }
Esempio n. 11
0
 protected internal ConsumingPromise(Queue queue,
                                     IConsumedMessageBuilder builder,
                                     ConsumingConfiguration configuration,
                                     Func <ILog> logBuilder)
 {
     Queue         = queue;
     Builder       = builder;
     Configuration = configuration;
     LogBuilder    = logBuilder;
 }
Esempio n. 12
0
        protected internal ConsumerBase(IInboundChannel inboundChannel,
                                        IOutboundChannel outboundChannel,
                                        Queue queue,
                                        IConsumedMessageBuilder builder,
                                        ConsumingConfiguration configuration)
        {
            InboundChannel = inboundChannel;
            OutboundChannel = outboundChannel;
            _queue = queue;
            _builder = builder;
            Configuration = configuration;

            ConsumerCancelled += OnConsumerCancelled;
        }
Esempio n. 13
0
        protected internal ConsumerBase(IInboundChannel inboundChannel,
                                        IOutboundChannel outboundChannel,
                                        Queue queue,
                                        IConsumedMessageBuilder builder,
                                        ConsumingConfiguration configuration)
        {
            InboundChannel  = inboundChannel;
            OutboundChannel = outboundChannel;
            _queue          = queue;
            _builder        = builder;
            Configuration   = configuration;

            ConsumerCancelled += OnConsumerCancelled;
        }
Esempio n. 14
0
 internal AtLeastOnceConsumer(IModel model,
                              IConsumedMessageBuilder builder,
                              SubscriptionConfiguration configuration)
     : base(model, builder, configuration)
 {
 }