summaryrefslogtreecommitdiff
path: root/qpid/cpp/examples/messaging/map_receiver.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-08-13 15:06:42 +0000
committerGordon Sim <gsim@apache.org>2013-08-13 15:06:42 +0000
commit144f3c698bdddf22509691a4f285305e9fd83291 (patch)
tree2a399e0c06586c0ab5cab8986eb317767ac4080d /qpid/cpp/examples/messaging/map_receiver.cpp
parent4c5376ff911c42a9e43115d38c6751573d8af514 (diff)
downloadqpid-python-144f3c698bdddf22509691a4f285305e9fd83291.tar.gz
QPID-5040: support for sending and receiving messages with AmqpValue sections
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1513536 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/messaging/map_receiver.cpp')
-rw-r--r--qpid/cpp/examples/messaging/map_receiver.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/qpid/cpp/examples/messaging/map_receiver.cpp b/qpid/cpp/examples/messaging/map_receiver.cpp
index 081f7394a8..96bc76b821 100644
--- a/qpid/cpp/examples/messaging/map_receiver.cpp
+++ b/qpid/cpp/examples/messaging/map_receiver.cpp
@@ -39,15 +39,13 @@ int main(int argc, char** argv) {
const char* url = argc>1 ? argv[1] : "amqp:tcp:127.0.0.1:5672";
const char* address = argc>2 ? argv[2] : "message_queue; {create: always}";
std::string connectionOptions = argc > 3 ? argv[3] : "";
-
+
Connection connection(url, connectionOptions);
try {
connection.open();
Session session = connection.createSession();
Receiver receiver = session.createReceiver(address);
- Variant::Map content;
- decode(receiver.fetch(), content);
- std::cout << content << std::endl;
+ std::cout << receiver.fetch().getContentObject() << std::endl;
session.acknowledge();
receiver.close();
connection.close();
@@ -56,5 +54,5 @@ int main(int argc, char** argv) {
std::cout << error.what() << std::endl;
connection.close();
}
- return 1;
+ return 1;
}