35 lines
992 B
Dart
35 lines
992 B
Dart
import "dart:io";
|
|
import "package:dart_amqp/dart_amqp.dart";
|
|
|
|
void main (List<String> arguments) {
|
|
ConnectionSettings settings = new ConnectionSettings(
|
|
host: "localhost"
|
|
);
|
|
|
|
Client client = new Client(settings: settings);
|
|
|
|
ProcessSignal.sigint.watch().listen((_) {
|
|
client.close().then((_) {
|
|
print("close client");
|
|
exit(0);
|
|
});
|
|
});
|
|
|
|
String msg = arguments.isEmpty ? "Hello World!": arguments[0];
|
|
|
|
client
|
|
.channel()
|
|
.then((Channel channel) {
|
|
return channel.exchange("logs", ExchangeType.FANOUT, durable: false);
|
|
})
|
|
.then((Exchange exchange) {
|
|
print(" [*] Waiting for messages in logs. To Exit press CTRL+C");
|
|
return exchange.bindPrivateQueueConsumer(null);
|
|
})
|
|
.then((Consumer consumer) {
|
|
consumer.listen((AmqpMessage event) {
|
|
print(" [x] Received ${event.payloadAsString}");
|
|
});
|
|
});
|
|
}
|