diff options
author | Charles E. Rolke <chug@apache.org> | 2015-01-08 19:28:51 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2015-01-08 19:28:51 +0000 |
commit | 55c2d83286aef546d0aaa3e3ecaf323a70abe0b7 (patch) | |
tree | 22551668e8cb6e0772bcc0f8b7db95cbf4cf3ab5 /qpid/cpp/examples/messaging | |
parent | 12552e67e41a794b66c16b9aa0c1ce79a73f98f9 (diff) | |
download | qpid-python-55c2d83286aef546d0aaa3e3ecaf323a70abe0b7.tar.gz |
QPID-6301: [C++ Messaging] Client example acks responses
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1650359 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/messaging')
-rw-r--r-- | qpid/cpp/examples/messaging/client.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qpid/cpp/examples/messaging/client.cpp b/qpid/cpp/examples/messaging/client.cpp index d695dd9ada..44720ef3ce 100644 --- a/qpid/cpp/examples/messaging/client.cpp +++ b/qpid/cpp/examples/messaging/client.cpp @@ -7,9 +7,9 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -66,6 +66,7 @@ int main(int argc, char** argv) { sender.send(request); Message response = receiver.fetch(); std::cout << request.getContentObject() << " -> " << response.getContentObject() << std::endl; + session.acknowledge(response); } connection.close(); return 0; |