From activemq-commits-return-2481-apmail-geronimo-activemq-commits-archive=geronimo.apache.org@geronimo.apache.org Tue Jul 04 13:00:07 2006 Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 8752 invoked from network); 4 Jul 2006 13:00:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Jul 2006 13:00:06 -0000 Received: (qmail 23587 invoked by uid 500); 4 Jul 2006 13:00:06 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 23565 invoked by uid 500); 4 Jul 2006 13:00:06 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 23555 invoked by uid 99); 4 Jul 2006 13:00:06 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jul 2006 06:00:06 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jul 2006 06:00:05 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9BEA81A983A; Tue, 4 Jul 2006 05:59:45 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r418997 - /incubator/activemq/site/async-sends.html Date: Tue, 04 Jul 2006 12:59:44 -0000 To: activemq-commits@geronimo.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060704125945.9BEA81A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jstrachan Date: Tue Jul 4 05:59:42 2006 New Revision: 418997 URL: http://svn.apache.org/viewvc?rev=418997&view=rev Log: Latest export from confluence Modified: incubator/activemq/site/async-sends.html Modified: incubator/activemq/site/async-sends.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/async-sends.html?rev=418997&r1=418996&r2=418997&view=diff ============================================================================== --- incubator/activemq/site/async-sends.html (original) +++ incubator/activemq/site/async-sends.html Tue Jul 4 05:59:42 2006 @@ -259,12 +259,16 @@

Configuring Async Send using a Connection URI

+

You can use the Connection Configuration URI to configure async sends as follows

+
cf = new ActiveMQConnectionFactory("tcp://locahost:61616?jms.useAsyncSend=true");

Configuring Async Send at the ConnectionFactory Level

+

You can enable this feature on the ActiveMQConnectionFactory object using the property.

+
((ActiveMQConnectionFactory)connectionFactory).setUseAsyncSend(true);
@@ -273,9 +277,20 @@

Configuring the dispatchAsync setting at this level overrides the settings at the connection factory level.

+

You can enable this feature on the ActiveMQConnection object using the property.

+
((ActiveMQConnection)connection).setUseAsyncSend(true);
-
+ + +

Also see

+ + + @@ -285,8 +300,8 @@