Exemplo n.º 1
0
 internal AtLeastOnceConsumingPromise(Queue queue,
                                      IConsumedMessageBuilder builder,
                                      ConsumingConfiguration configuration,
                                      Func<ILog> logBuilder)
     : base(queue, builder, configuration, logBuilder)
 {
 }
Exemplo n.º 2
0
 internal AtLeastOnceConsumingPromise(Queue queue,
                                      IConsumedMessageBuilder builder,
                                      ConsumingConfiguration configuration,
                                      Func <ILog> logBuilder)
     : base(queue, builder, configuration, logBuilder)
 {
 }
Exemplo n.º 3
0
 internal AtMostOnceConsumerWrapper(IInboundChannel inboundChannel,
                                    IOutboundChannel outboundChannel,
                                    Queue queue,
                                    IConsumedMessageBuilder builder,
                                    ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Exemplo n.º 4
0
 internal AtMostOnceConsumerWrapper(IInboundChannel inboundChannel,
                                    IOutboundChannel outboundChannel,
                                    Queue queue,
                                    IConsumedMessageBuilder builder,
                                    ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Exemplo n.º 5
0
 protected ConsumerBase(IModel model,
                        IConsumedMessageBuilder builder,
                        SubscriptionConfiguration configuration)
     : base(model)
 {
     Builder = builder;
     Configuration = configuration;
 }
Exemplo n.º 6
0
 public FakeConsumerBase(IInboundChannel inboundChannel,
                         IOutboundChannel outboundChannel,
                         Queue queue,
                         IConsumedMessageBuilder builder,
                         ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Exemplo n.º 7
0
 public FakeConsumerBase(IInboundChannel inboundChannel,
                         IOutboundChannel outboundChannel,
                         Queue queue,
                         IConsumedMessageBuilder builder,
                         ConsumingConfiguration configuration)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
 }
Exemplo n.º 8
0
 internal LoggedAtLeastOnceConsumer(IInboundChannel inboundChannel,
                                    IOutboundChannel outboundChannel,
                                    Queue queue,
                                    IConsumedMessageBuilder builder,
                                    ConsumingConfiguration configuration,
                                    ILog log)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
     _log = log;
 }
Exemplo n.º 9
0
 internal LoggedAtMostOnceConsumer(IInboundChannel inboundChannel,
                                   IOutboundChannel outboundChannel,
                                   Queue queue,
                                   IConsumedMessageBuilder builder,
                                   ConsumingConfiguration configuration,
                                   ILog log)
     : base(inboundChannel, outboundChannel, queue, builder, configuration)
 {
     _log = log;
 }
Exemplo n.º 10
0
 protected internal ConsumingPromise(Queue queue,
                                     IConsumedMessageBuilder builder,
                                     ConsumingConfiguration configuration,
                                     Func<ILog> logBuilder)
 {
     Queue = queue;
     Builder = builder;
     Configuration = configuration;
     LogBuilder = logBuilder;
 }
Exemplo n.º 11
0
 protected internal ConsumingPromise(Queue queue,
                                     IConsumedMessageBuilder builder,
                                     ConsumingConfiguration configuration,
                                     Func <ILog> logBuilder)
 {
     Queue         = queue;
     Builder       = builder;
     Configuration = configuration;
     LogBuilder    = logBuilder;
 }
Exemplo 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;
        }
Exemplo 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;
        }
Exemplo n.º 14
0
 internal AtLeastOnceConsumer(IModel model,
                              IConsumedMessageBuilder builder,
                              SubscriptionConfiguration configuration)
     : base(model, builder, configuration)
 {
 }