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/06/22 16:40:48 UTC

svn commit: r787253 - /camel/trunk/camel-core/src/main/java/org/apache/camel/CamelContext.java

Author: davsclaus
Date: Mon Jun 22 14:40:47 2009
New Revision: 787253

URL: http://svn.apache.org/viewvc?rev=787253&view=rev
Log:
CAMEL-1720: StreamCache is now default disabled. Fixed a bug with interceptor and on completion. Added methods to configure stream cache in java and spring dsl.

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

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/CamelContext.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/CamelContext.java?rev=787253&r1=787252&r2=787253&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/CamelContext.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/CamelContext.java Mon Jun 22 14:40:47 2009
@@ -464,9 +464,9 @@
     ServicePool<Endpoint, Producer> getProducerServicePool();
 
     /**
-     * Sets whether stream caching is enable or not (default is disabled).
+     * Sets whether stream caching is enabled or not (default is disabled).
      *
-     * @param cache whether stream cachin is enabled or not
+     * @param cache whether stream caching is enabled or not
      */
     void setStreamCaching(Boolean cache);
 }