You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2007/09/14 11:58:53 UTC

svn commit: r575602 - /activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/AsyncProcessor.java

Author: jstrachan
Date: Fri Sep 14 02:58:50 2007
New Revision: 575602

URL: http://svn.apache.org/viewvc?rev=575602&view=rev
Log:
minor javadoc fix

Modified:
    activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/AsyncProcessor.java

Modified: activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/AsyncProcessor.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/AsyncProcessor.java?rev=575602&r1=575601&r2=575602&view=diff
==============================================================================
--- activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/AsyncProcessor.java (original)
+++ activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/AsyncProcessor.java Fri Sep 14 02:58:50 2007
@@ -31,8 +31,9 @@
     /**
      * Processes the message exchange.  Similar to {@see Processor.process}, but
      * the caller supports having the exchange asynchronously processed.
-     * 
-     * @param  The @{see AsyncCallback} will be invoked when the processing 
+     *
+     * @param exchange the exchange to process
+     * @param  callback The @{see AsyncCallback} will be invoked when the processing
      *         of the exchange is completed. If the exchange is completed synchronously, then the 
      *         callback is also invoked synchronously.  The callback should therefore be careful of
      *         starting recursive loop.