Author: ningjiang Date: Wed Mar 31 13:15:36 2010 New Revision: 929525 URL: http://svn.apache.org/viewvc?rev=929525&view=rev Log: Fixed the typo of async DSL comments
Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java?rev=929525&r1=929524&r2=929525&view=diff ============================================================================== --- camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java (original) +++ camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java Wed Mar 31 13:15:36 2010 @@ -519,11 +519,11 @@ public abstract class ProcessorDefinitio } /** - * Sends the exchange to the given endpoint using synchronous mode. + * Sends the exchange to the given endpoint using asynchronous mode. * * @param uri the endpoint to send to * @return the builder - * @see org.apache.camel.AsyncProcessor + * @see org.apache.camel.SendAsyncProcessor */ public ToDefinition toAsync(String uri) { ToDefinition answer = new ToDefinition(uri); @@ -536,12 +536,12 @@ public abstract class ProcessorDefinitio } /** - * Sends the exchange to the given endpoint using synchronous mode. + * Sends the exchange to the given endpoint using asynchronous mode. * * @param uri the endpoint to send to * @param poolSize the core pool size * @return the builder - * @see org.apache.camel.AsyncProcessor + * @see org.apache.camel.SendAsyncProcessor */ public ToDefinition toAsync(String uri, int poolSize) { ToDefinition answer = new ToDefinition(uri); @@ -555,11 +555,11 @@ public abstract class ProcessorDefinitio } /** - * Sends the exchange to the given endpoint using synchronous mode. + * Sends the exchange to the given endpoint using asynchronous mode. * * @param endpoint the endpoint to send to * @return the builder - * @see org.apache.camel.AsyncProcessor + * @see org.apache.camel.SendAsyncProcessor */ public ToDefinition toAsync(Endpoint endpoint) { ToDefinition answer = new ToDefinition(endpoint); @@ -572,12 +572,12 @@ public abstract class ProcessorDefinitio } /** - * Sends the exchange to the given endpoint using synchronous mode. + * Sends the exchange to the given endpoint using asynchronous mode. * * @param endpoint the endpoint to send to * @param poolSize the core pool size * @return the builder - * @see org.apache.camel.AsyncProcessor + * @see org.apache.camel.SendAsyncProcessor */ public ToDefinition toAsync(Endpoint endpoint, int poolSize) { ToDefinition answer = new ToDefinition(endpoint);