rabbitmq-tutorials/java/Recv.java
mbgattu 64b96a5bd7
Update Recv.java
Adding additional import statement to fix following error received while compiling
Recv.java:20: error: cannot find symbol
            String message = new String(delivery.getBody(), StandardCharsets.UTF_8);
                                                            ^
  symbol:   variable StandardCharsets
  location: class Recv
1 error
2022-04-06 12:51:28 -04:00

27 lines
1.0 KiB
Java

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;
import com.rabbitmq.client.DeliverCallback;
import java.nio.charset.StandardCharsets;
public class Recv {
private final static String QUEUE_NAME = "hello";
public static void main(String[] argv) throws Exception {
ConnectionFactory factory = new ConnectionFactory();
factory.setHost("localhost");
Connection connection = factory.newConnection();
Channel channel = connection.createChannel();
channel.queueDeclare(QUEUE_NAME, false, false, false, null);
System.out.println(" [*] Waiting for messages. To exit press CTRL+C");
DeliverCallback deliverCallback = (consumerTag, delivery) -> {
String message = new String(delivery.getBody(), StandardCharsets.UTF_8);
System.out.println(" [x] Received '" + message + "'");
};
channel.basicConsume(QUEUE_NAME, true, deliverCallback, consumerTag -> { });
}
}