Applied patch suggested by marcusp@absa.co.za on the dev mailing list.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@359239 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2005-12-27 16:47:56 +00:00
parent 5444ef92e1
commit 5cea195af2
1 changed files with 3 additions and 0 deletions

View File

@ -207,6 +207,9 @@ public class ActiveMQConnectionFactory implements ConnectionFactory, QueueConnec
connection.setAsyncDispatch(isAsyncDispatch());
connection.setUseAsyncSend(isUseAsyncSend());
connection.setUseRetroactiveConsumer(isUseRetroactiveConsumer());
if( clientID !=null )
connection.setClientID(clientID);
return connection;
}