Author: arnaudsimon
Date: Mon Sep 10 05:39:34 2007
New Revision: 574225
URL: http://svn.apache.org/viewvc?rev=574225&view=rev
Log: (empty)
Modified:
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession_0_8.java
Modified:
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java?rev=574225&r1=574224&r2=574225&view=diff
==============================================================================
---
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
(original)
+++
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
Mon Sep 10 05:39:34 2007
@@ -350,22 +350,7 @@
}
}
- /**
- * Creates a new session on a connection with the default message factory
factory.
- *
- * @param con The connection on which to create the
session.
- * @param channelId The unique identifier for the session.
- * @param transacted Indicates whether or not the session is
transactional.
- * @param acknowledgeMode The acknoledgement mode for the session.
- * @param defaultPrefetchHigh The maximum number of messages to
prefetched before suspending the session.
- * @param defaultPrefetchLow The number of prefetched messages at
which to resume the session.
- */
- AMQSession(AMQConnection con, int channelId, boolean transacted, int
acknowledgeMode, int defaultPrefetchHigh,
- int defaultPrefetchLow)
- {
- this(con, channelId, transacted, acknowledgeMode,
MessageFactoryRegistry.newDefaultRegistry(), defaultPrefetchHigh,
- defaultPrefetchLow);
- }
+
// ===== JMS Session methods.
Modified:
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession_0_8.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession_0_8.java?rev=574225&r1=574224&r2=574225&view=diff
==============================================================================
---
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession_0_8.java
(original)
+++
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession_0_8.java
Mon Sep 10 05:39:34 2007
@@ -100,7 +100,7 @@
AMQSession_0_8(AMQConnection con, int channelId, boolean transacted, int
acknowledgeMode, int defaultPrefetchHigh,
int defaultPrefetchLow)
{
- this(con, channelId, transacted, acknowledgeMode,
MessageFactoryRegistry.newDefaultRegistry(), defaultPrefetchHigh,
+ this(con, channelId, transacted, acknowledgeMode,
MessageFactoryRegistry.newDefault08Registry(), defaultPrefetchHigh,
defaultPrefetchLow);
}