summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/perftest.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-01-10 22:50:23 +0000
committerAlan Conway <aconway@apache.org>2008-01-10 22:50:23 +0000
commitb8f05c981543c406c17cc3aa8362b360449bb5e3 (patch)
tree24b3cf051fbcc17deb5ec20def42a97bbd7fc0ee /qpid/cpp/src/tests/perftest.cpp
parent8d3a4cca33c6dcd7cee82bad259c0a18037eca44 (diff)
downloadqpid-python-b8f05c981543c406c17cc3aa8362b360449bb5e3.tar.gz
Client always collects at least an entire frameset into a single buffer
when possible. Based on patch from Gordon Sim. - Refactor Connector::writebuff, ::send as Connector::Writer - Collect frames up to EOF notifying AIO write. - Encode all available complete framesets into buffers as compactly as possible. - Logging buffer size and frames encoded per write for client and broker. - framing::Buffer added getPosition(), getSize(), default ctor, copy ctor. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@610972 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/perftest.cpp')
-rw-r--r--qpid/cpp/src/tests/perftest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/perftest.cpp b/qpid/cpp/src/tests/perftest.cpp
index ee210891fe..1bd5a963de 100644
--- a/qpid/cpp/src/tests/perftest.cpp
+++ b/qpid/cpp/src/tests/perftest.cpp
@@ -476,7 +476,7 @@ struct SubscribeThread : public Client {
session.close();
}
catch (const std::exception& e) {
- cout << "Publisher exception: " << e.what() << endl;
+ cout << "SubscribeThread exception: " << e.what() << endl;
exit(1);
}
}