updated the javadoc to be more explicit about the limitations of the pool package

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@397168 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-04-26 10:49:02 +00:00
parent f25d9269af
commit 35f915f3b9
3 changed files with 12 additions and 2 deletions

View File

@ -40,6 +40,12 @@ import javax.jms.TopicSession;
* {@link QueueConnection} which is pooled and on {@link #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 {

View File

@ -37,6 +37,9 @@ import java.util.Map;
*
* <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 $
*/

View File

@ -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>