在Listener中重置预取计数(rabbitmq,spring-amqp)

时间:2017-06-30 07:47:56

标签: rabbitmq spring-amqp

我使用的是spring-amqp。

如何在实现ChannelAwareMessageListener的侦听器中重置预取计数。

public class TestListener implements ChannelAwareMessageListener {

    @Override
    public void onMessage(Message message, Channel channel) throws IOException {
           channel.basicAck(message.getMessageProperties().getDeliveryTag(), false);

           if (some conditions) {
              // the prefetch count has been initialized to 1 in the SimpleMessageListenerContainer
              // here I want to reset the prefetch count
              channel.basicQos(10, true); // not working, I want to request 10 messages next time

              // I can do this way, following code work as expected, but is this the right way?
              container.stop(); // SimpleMessageListenerContainer
              container.setPrefetchCount(10);
              container.start();
           }
    }
}

简而言之,我想在侦听器中动态重置预取计数。

1 个答案:

答案 0 :(得分:0)

更改频道上的预取只会影响在该频道上创建的新消费者。现有的消费者获得创建时在频道上的qos预取。

是的,停止并重新启动容器将起作用。

但是,你不应该在监听器线程上这样做,你应该使用一个任务执行器来停止/启动;否则stop()将延迟5秒(默认情况下),等待消费者线程返回容器(因此你不应该在监听器线程上运行stop()。)

或者您可以减少shutdownTimeout