diff options
author | Gordon Sim <gsim@apache.org> | 2008-04-21 14:37:03 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-04-21 14:37:03 +0000 |
commit | 61647950e1c4e6b1efb0a1b3f3b220783680103f (patch) | |
tree | f666cacf0e56079e23ef0a9c881d26baa7d5a1fe /cpp/src/tests/perftest.cpp | |
parent | ceca53c26ab6ed56929dc558b3255bdd83090315 (diff) | |
download | qpid-python-61647950e1c4e6b1efb0a1b3f3b220783680103f.tar.gz |
QPID-920: send message-accept for acks (as well as completion)
* AckPolicy now maintains a set of transfered messages for cumulative accepts
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@650159 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/perftest.cpp')
-rw-r--r-- | cpp/src/tests/perftest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/perftest.cpp b/cpp/src/tests/perftest.cpp index 966d708ff6..231b25daa4 100644 --- a/cpp/src/tests/perftest.cpp +++ b/cpp/src/tests/perftest.cpp @@ -533,9 +533,9 @@ struct SubscribeThread : public Client { size_t expect=0; for (size_t i = 0; i < opts.subQuota; ++i) { msg=lq.pop(); - if (opts.intervalSub) ::usleep(opts.intervalSub*1000); + if (opts.intervalSub) ::usleep(opts.intervalSub*1000); // TODO aconway 2007-11-23: check message order for. - // multiple publishers. Need an acorray of counters, + // multiple publishers. Need an array of counters, // one per publisher and a publisher ID in the // message. Careful not to introduce a lot of overhead // here, e.g. no std::map, std::string etc. @@ -550,7 +550,7 @@ struct SubscribeThread : public Client { } } if (opts.ack !=0) - msg.acknowledge(); // Cumulative ack for final batch. + subs.getAckPolicy().ackOutstanding(session); // Cumulative ack for final batch. AbsTime end=now(); // Report to publisher. |