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 | 34aabfd2f63984c4e364ddf70b3de1c3f307ff52 (patch) | |
| tree | d1bd31a2728ff1a34afe100f623cc876bf59fd83 /qpid/java/client/test/src | |
| parent | 98d82ee5d6a7f5906716475f0fff41d0fa3a6e2d (diff) | |
| download | qpid-python-34aabfd2f63984c4e364ddf70b3de1c3f307ff52.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@464950 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client/test/src')
| -rw-r--r-- | qpid/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java b/qpid/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java index 3445b37317..fad1849fed 100644 --- a/qpid/java/client/test/src/org/apache/qpid/flow/ChannelFlowTest.java +++ b/qpid/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); |
