summaryrefslogtreecommitdiff
path: root/qpid/cpp/examples/messaging/drain.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/drain.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/drain.cpp')
-rw-r--r--qpid/cpp/examples/messaging/drain.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/qpid/cpp/examples/messaging/drain.cpp b/qpid/cpp/examples/messaging/drain.cpp
index 563e5e5060..fe4ea7950d 100644
--- a/qpid/cpp/examples/messaging/drain.cpp
+++ b/qpid/cpp/examples/messaging/drain.cpp
@@ -90,13 +90,11 @@ int main(int argc, char** argv)
int count = options.getCount();
Message message;
int i = 0;
-
+
while (receiver.fetch(message, timeout)) {
std::cout << "Message(properties=" << message.getProperties() << ", content='" ;
if (message.getContentType() == "amqp/map") {
- Variant::Map map;
- decode(message, map);
- std::cout << map;
+ std::cout << message.getContentObject().asMap();
} else {
std::cout << message.getContent();
}
@@ -106,7 +104,7 @@ int main(int argc, char** argv)
break;
}
receiver.close();
- session.close();
+ session.close();
connection.close();
return 0;
} catch(const std::exception& error) {
@@ -114,5 +112,5 @@ int main(int argc, char** argv)
connection.close();
}
}
- return 1;
+ return 1;
}