How to consume one message?

前端 未结 3 869
有刺的猬
有刺的猬 2021-01-13 05:56

With example in rabbitmq, consumer get all messages from queue at one time. How to consume one message and exit?

QueueingConsumer consumer = new QueueingCons         


        
3条回答
  •  滥情空心
    2021-01-13 06:03

    You have to declare basicQos setting to get one message at a time from ACK to NACK status and disable auto ACK to give acknowledgement explicitly.

    ConnectionFactory factory = new ConnectionFactory();
        factory.setHost("localhost");
        Connection connection = factory.newConnection();
        Channel channel = connection.createChannel();
        channel.basicQos(1);
        channel.queueDeclare(QUEUE_NAME, true, false, false, null);
        System.out.println("[*] waiting for messages. To exit press CTRL+C");
    
        QueueingConsumer consumer = new QueueingConsumer(channel);
        channel.basicConsume(QUEUE_NAME, consumer);
        while(true) {
            QueueingConsumer.Delivery delivery = consumer.nextDelivery();
            int n = channel.queueDeclarePassive(QUEUE_NAME).getMessageCount();
            System.out.println(n);
            if(delivery != null) {
                byte[] bs = delivery.getBody();
                System.out.println(new String(bs));
                //String message= new String(delivery.getBody());
                channel.basicAck(delivery.getEnvelope().getDeliveryTag(), false);
                //System.out.println("[x] Received '"+message);
            }
        }
    

    Hope it helps!

提交回复
热议问题