diff options
author | Martin Ritchie <ritchiem@apache.org> | 2006-10-17 15:57:18 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2006-10-17 15:57:18 +0000 |
commit | b8cb6602b076df6f9bacc91cc4396ab90e26b9ca (patch) | |
tree | 648c6c607bffbd7299339b10d1903c325ebefb9a /java/client/test | |
parent | f6ed9e1b6a770caa5889f670cba0c74ab1c82357 (diff) | |
download | qpid-python-b8cb6602b076df6f9bacc91cc4396ab90e26b9ca.tar.gz |
Implemented Client side high/low water mark prefetching for NO_ACK.
Use of single prefetch should be unaffected. Setting the high and low to be the same.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@464950 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/test')
-rw-r--r-- | java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java b/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java index 3445b37317..fad1849fed 100644 --- a/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java +++ b/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java @@ -43,7 +43,7 @@ public class ChannelFlowTest implements MessageListener ChannelFlowTest(AMQConnection connection, AMQDestination destination) throws Exception { - AMQSession session = (AMQSession) connection.createSession(false, AMQSession.NO_ACKNOWLEDGE, 50); + AMQSession session = (AMQSession) connection.createSession(false, AMQSession.NO_ACKNOWLEDGE, 50,25); //set up a slow consumer session.createConsumer(destination).setMessageListener(this); |