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 2009/05/28 16:48:08 UTC

svn commit: r779610 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/MessageDispatchChannel.h

Author: tabish
Date: Thu May 28 14:48:08 2009
New Revision: 779610

URL: http://svn.apache.org/viewvc?rev=779610&view=rev
Log:
Documentation cleanup

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

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/MessageDispatchChannel.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/MessageDispatchChannel.h?rev=779610&r1=779609&r2=779610&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/MessageDispatchChannel.h (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/MessageDispatchChannel.h Thu May 28 14:48:08 2009
@@ -143,55 +143,26 @@
 
     public:
 
-        /**
-         * Locks the object.
-         */
         virtual void lock() throw( decaf::lang::Exception ){
             channel.lock();
         }
 
-        /**
-         * Unlocks the object.
-         */
         virtual void unlock() throw( decaf::lang::Exception ){
             channel.unlock();
         }
 
-        /**
-         * Waits on a signal from this object, which is generated
-         * by a call to Notify.  Must have this object locked before
-         * calling.
-         */
         virtual void wait() throw( decaf::lang::Exception ){
             channel.wait();
         }
 
-        /**
-         * Waits on a signal from this object, which is generated
-         * by a call to Notify.  Must have this object locked before
-         * calling.  This wait will timeout after the specified time
-         * interval.
-         * @param millisecs time to wait, or WAIT_INIFINITE
-         * @throws ActiveMQException
-         */
         virtual void wait( unsigned long millisecs ) throw( decaf::lang::Exception ) {
             channel.wait( millisecs );
         }
 
-        /**
-         * Signals a waiter on this object that it can now wake
-         * up and continue.  Must have this object locked before
-         * calling.
-         */
         virtual void notify() throw( decaf::lang::Exception ){
             channel.notify();
         }
 
-        /**
-         * Signals the waiters on this object that it can now wake
-         * up and continue.  Must have this object locked before
-         * calling.
-         */
         virtual void notifyAll() throw( decaf::lang::Exception ){
             channel.notifyAll();
         }