Author: jstrachan
Date: Wed Apr 26 03:49:02 2006
New Revision: 397168
URL: http://svn.apache.org/viewcvs?rev=397168&view=rev
Log:
updated the javadoc to be more explicit about the limitations of the pool
package
Modified:
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnection.java
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/package.html
Modified:
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnection.java
URL:
http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnection.java?rev=397168&r1=397167&r2=397168&view=diff
==============================================================================
---
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnection.java
(original)
+++
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnection.java
Wed Apr 26 03:49:02 2006
@@ -40,6 +40,12 @@
* [EMAIL PROTECTED] QueueConnection} which is pooled and on [EMAIL PROTECTED]
#close()} will return
* itself to the sessionPool.
*
+ * <b>NOTE</b> this implementation is only intended for use when sending
+ * messages.
+ * It does not deal with pooling of consumers; for that look at a library like
+ * <a href="http://jencks.org/">Jencks</a> such as in
+ * <a href="http://jencks.org/Message+Driven+POJOs">this example</a>
+ *
* @version $Revision: 1.1.1.1 $
*/
public class PooledConnection implements TopicConnection, QueueConnection {
Modified:
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java
URL:
http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java?rev=397168&r1=397167&r2=397168&view=diff
==============================================================================
---
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java
(original)
+++
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/PooledConnectionFactory.java
Wed Apr 26 03:49:02 2006
@@ -37,6 +37,9 @@
*
* <b>NOTE</b> this implementation is only intended for use when sending
* messages.
+ * It does not deal with pooling of consumers; for that look at a library like
+ * <a href="http://jencks.org/">Jencks</a> such as in
+ * <a href="http://jencks.org/Message+Driven+POJOs">this example</a>
*
* @version $Revision: 1.1 $
*/
Modified:
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/package.html
URL:
http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/package.html?rev=397168&r1=397167&r2=397168&view=diff
==============================================================================
---
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/package.html
(original)
+++
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/pool/package.html
Wed Apr 26 03:49:02 2006
@@ -4,8 +4,9 @@
<body>
A JMS provider which pools Connection, Session and MessageProducer instances
so it can be used with tools like
-Spring's <a href="http://activemq.org/Spring+Support">JmsTemplate</a>
-
+Spring's <a href="http://activemq.org/Spring+Support">JmsTemplate</a>.
<b>Note</b> that this package
+does not deal with pooling of consumers; for that look at a library like <a
href="http://jencks.org/">Jencks</a>
+such as in <a href="http://jencks.org/Message+Driven+POJOs">this example</a>
</body>
</html>