forked from rabbitmq/rabbitmq-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
receive.dart
34 lines (28 loc) · 984 Bytes
/
receive.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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];
String queueTag = "hello";
client
.channel()
.then((Channel channel) => channel.queue(queueTag, durable: false))
.then((Queue queue) {
print(" [*] Waiting for messages in ${queueTag}. To Exit press CTRL+C");
return queue.consume(consumerTag: queueTag, noAck: true);
})
.then((Consumer consumer) {
consumer.listen((AmqpMessage event) {
print(" [x] Received ${event.payloadAsString}");
});
});
}