You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2009/08/04 16:59:47 UTC

svn commit: r800830 - /camel/trunk/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java

Author: davsclaus
Date: Tue Aug  4 14:59:46 2009
New Revision: 800830

URL: http://svn.apache.org/viewvc?rev=800830&view=rev
Log:
CAMEL-1876: Added asyncCallback methods to ProducerTemplate to do async messaging with callbacks being invoked when the message is done. This alows client to not hazzle with how to wait for the response as the callback is invoked when the message is done.

Modified:
    camel/trunk/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java?rev=800830&r1=800829&r2=800830&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java Tue Aug  4 14:59:46 2009
@@ -26,7 +26,6 @@
 import org.apache.camel.Producer;
 import org.apache.camel.ProducerCallback;
 import org.apache.camel.ServicePoolAware;
-import org.apache.camel.model.OnCompletionDefinition;
 import org.apache.camel.spi.ServicePool;
 import org.apache.camel.spi.Synchronization;
 import org.apache.camel.util.LRUCache;