You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2008/08/23 19:30:37 UTC

svn commit: r688381 - in /activemq/activemq-cpp/trunk/src/examples: consumers/SimpleAsyncConsumer.cpp main.cpp producers/SimpleProducer.cpp

Author: tabish
Date: Sat Aug 23 10:30:36 2008
New Revision: 688381

URL: http://svn.apache.org/viewvc?rev=688381&view=rev
Log:
Minor Code Cleanup

Modified:
    activemq/activemq-cpp/trunk/src/examples/consumers/SimpleAsyncConsumer.cpp
    activemq/activemq-cpp/trunk/src/examples/main.cpp
    activemq/activemq-cpp/trunk/src/examples/producers/SimpleProducer.cpp

Modified: activemq/activemq-cpp/trunk/src/examples/consumers/SimpleAsyncConsumer.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/examples/consumers/SimpleAsyncConsumer.cpp?rev=688381&r1=688380&r2=688381&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/examples/consumers/SimpleAsyncConsumer.cpp (original)
+++ activemq/activemq-cpp/trunk/src/examples/consumers/SimpleAsyncConsumer.cpp Sat Aug 23 10:30:36 2008
@@ -195,12 +195,12 @@
 
     // Set the URI to point to the IPAddress of your broker.
     // add any optional params to the url to enable things like
-    // tightMarshalling or tcp logging etc.  See the CMS website for
+    // tightMarshalling or tcp logging etc.  See the CMS web site for
     // a full list of configuration options.
     //
     //  http://activemq.apache.org/cms/
     //
-    // Wire Foormat Options:
+    // Wire Format Options:
     // =====================
     // Use either stomp or openwire, the default ports are different for each
     //

Modified: activemq/activemq-cpp/trunk/src/examples/main.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/examples/main.cpp?rev=688381&r1=688380&r2=688381&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/examples/main.cpp (original)
+++ activemq/activemq-cpp/trunk/src/examples/main.cpp Sat Aug 23 10:30:36 2008
@@ -356,12 +356,12 @@
 
     // Set the URI to point to the IPAddress of your broker.
     // add any optional params to the url to enable things like
-    // tightMarshalling or tcp logging etc.  See the CMS website for
+    // tightMarshalling or tcp logging etc.  See the CMS web site for
     // a full list of configuration options.
     //
     //  http://activemq.apache.org/cms/
     //
-    // Wire Foormat Options:
+    // Wire Format Options:
     // =====================
     // Use either stomp or openwire, the default ports are different for each
     //
@@ -372,8 +372,8 @@
     //
     std::string brokerURI =
         "tcp://127.0.0.1:61616"
-        "?wireFormat=openwire"
-        "&transport.useAsyncSend=true";
+        "?wireFormat=openwire";
+//        "&transport.useAsyncSend=true";
 //        "&transport.commandTracingEnabled=true"
 //        "&transport.tcpTracingEnabled=true";
 //        "&wireFormat.tightEncodingEnabled=true";

Modified: activemq/activemq-cpp/trunk/src/examples/producers/SimpleProducer.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/examples/producers/SimpleProducer.cpp?rev=688381&r1=688380&r2=688381&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/examples/producers/SimpleProducer.cpp (original)
+++ activemq/activemq-cpp/trunk/src/examples/producers/SimpleProducer.cpp Sat Aug 23 10:30:36 2008
@@ -173,7 +173,7 @@
 
     // Set the URI to point to the IPAddress of your broker.
     // add any optional params to the url to enable things like
-    // tightMarshalling or tcp logging etc.  See the CMS website for
+    // tightMarshalling or tcp logging etc.  See the CMS web site for
     // a full list of configuration options.
     //
     //  http://activemq.apache.org/cms/