diff options
author | Alan Conway <aconway@apache.org> | 2007-11-07 19:57:46 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-11-07 19:57:46 +0000 |
commit | 710b8a1f1285b9aa5bccee5b1906500667dd7bc5 (patch) | |
tree | 83005778c44cf7d897cef882ced2330bc8bd2228 /cpp/src/tests/ClientSessionTest.cpp | |
parent | d19657d82321b2b5e2cac386c49aa99f82b976fb (diff) | |
download | qpid-python-710b8a1f1285b9aa5bccee5b1906500667dd7bc5.tar.gz |
client::SubscriptionManager:
- Added autoStop support.
- Added LocalQueue subscriptions.
- Expose AckPolicy settings to user.
client::Message:
- incoming Messages carry their session for acknowledge
perftest: (see perftest --help for details...)
- allow multiple consumers.
- 3 queue modes: shared, fanout, topic.
- set size of messages
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@592869 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ClientSessionTest.cpp')
-rw-r--r-- | cpp/src/tests/ClientSessionTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/ClientSessionTest.cpp b/cpp/src/tests/ClientSessionTest.cpp index ed3d733c20..369477131c 100644 --- a/cpp/src/tests/ClientSessionTest.cpp +++ b/cpp/src/tests/ClientSessionTest.cpp @@ -48,7 +48,7 @@ struct DummyListener : public MessageListener void listen() { - dispatcher.listen(name, this, true, 1); + dispatcher.listen(name, this); dispatcher.run(); } |