0
私はspring-amqpを使用しています。リスナー(rabbitmq、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();
}
}
}
つまり、リスナーでプリフェッチカウントを動的にリセットしたいとします。