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 2014/03/18 09:39:21 UTC

[3/6] git commit: Polished

Polished


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a10ab78b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a10ab78b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a10ab78b

Branch: refs/heads/camel-2.13.x
Commit: a10ab78b14b8f017ebdc61ac8b62c6009f5c70d8
Parents: 519123b
Author: Claus Ibsen <da...@apache.org>
Authored: Tue Mar 18 07:36:09 2014 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Tue Mar 18 09:41:38 2014 +0100

----------------------------------------------------------------------
 camel-core/src/main/java/org/apache/camel/StreamCache.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a10ab78b/camel-core/src/main/java/org/apache/camel/StreamCache.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/StreamCache.java b/camel-core/src/main/java/org/apache/camel/StreamCache.java
index 5333bd3..13ab6c1 100644
--- a/camel-core/src/main/java/org/apache/camel/StreamCache.java
+++ b/camel-core/src/main/java/org/apache/camel/StreamCache.java
@@ -23,8 +23,11 @@ import java.io.OutputStream;
  * Tagging interface to indicate that a type is capable of caching the underlying data stream.
  * <p/>
  * This is a useful feature for avoiding message re-readability issues.
- * This interface is mainly used by the {@link org.apache.camel.processor.interceptor.StreamCachingInterceptor}
+ * This interface is mainly used by the {@link org.apache.camel.spi.StreamCachingStrategy}
  * for determining if/how to wrap a stream-based message.
+ * <p/>
+ * The Camel routing engine uses the {@link org.apache.camel.processor.CamelInternalProcessor.StreamCachingAdvice}
+ * to apply the stream cache during routing.
  *
  * @version 
  */