35 lines
1.2 KiB
Java
35 lines
1.2 KiB
Java
import com.rabbitmq.client.*;
|
|
|
|
public class ReceiveLogsTopic {
|
|
|
|
private static final String EXCHANGE_NAME = "topic_logs";
|
|
|
|
public static void main(String[] argv) throws Exception {
|
|
ConnectionFactory factory = new ConnectionFactory();
|
|
factory.setHost("localhost");
|
|
Connection connection = factory.newConnection();
|
|
Channel channel = connection.createChannel();
|
|
|
|
channel.exchangeDeclare(EXCHANGE_NAME, BuiltinExchangeType.TOPIC);
|
|
String queueName = channel.queueDeclare().getQueue();
|
|
|
|
if (argv.length < 1) {
|
|
System.err.println("Usage: ReceiveLogsTopic [binding_key]...");
|
|
System.exit(1);
|
|
}
|
|
|
|
for (String bindingKey : argv) {
|
|
channel.queueBind(queueName, EXCHANGE_NAME, bindingKey);
|
|
}
|
|
|
|
System.out.println(" [*] Waiting for messages. To exit press CTRL+C");
|
|
|
|
DeliverCallback deliverCallback = (consumerTag, delivery) -> {
|
|
String message = new String(delivery.getBody(), "UTF-8");
|
|
System.out.println(" [x] Received '" + delivery.getEnvelope().getRoutingKey() + "':'" + message + "'");
|
|
};
|
|
channel.basicConsume(queueName, true, deliverCallback, consumerTag -> { });
|
|
}
|
|
}
|
|
|