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/25 01:21:38 UTC

svn commit: r688575 - in /activemq/activemq-cpp/trunk/src/main/activemq/core: ActiveMQConstants.cpp ActiveMQConstants.h

Author: tabish
Date: Sun Aug 24 16:21:38 2008
New Revision: 688575

URL: http://svn.apache.org/viewvc?rev=688575&view=rev
Log:
Implement timed sync request to remove the connection.

Modified:
    activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.cpp
    activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.h

Modified: activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.cpp?rev=688575&r1=688574&r2=688575&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.cpp (original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.cpp Sun Aug 24 16:21:38 2008
@@ -45,6 +45,7 @@
     destOptions[CONSUMER_EXCLUSIVE] = "consumer.exclusive";
     destOptions[CONSUMER_PRIORITY] = "consumer.priority";
 
+    uriParams[PARAM_CLOSETIMEOUT] = "connection.closeTimeout";
     uriParams[PARAM_SENDTIMEOUT] = "connection.sendTimeout";
     uriParams[PARAM_PRODUCERWINDOWSIZE] = "connection.producerWidowSize";
     uriParams[PARAM_USERNAME] = "username";

Modified: activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.h?rev=688575&r1=688574&r2=688575&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.h (original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQConstants.h Sun Aug 24 16:21:38 2008
@@ -59,6 +59,7 @@
             PARAM_USERNAME,
             PARAM_PASSWORD,
             PARAM_CLIENTID,
+            PARAM_CLOSETIMEOUT,
             NUM_PARAMS
         };