Repository: camel Updated Branches: refs/heads/camel-2.12.x 9cd739d24 -> 7569a4b18 refs/heads/camel-2.13.x 519123bc3 -> a0cde9b08 refs/heads/master 40c9b2543 -> 856997e92
Polished Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/35d5dfb4 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/35d5dfb4 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/35d5dfb4 Branch: refs/heads/master Commit: 35d5dfb41d8d559ccccbc7fd07f39f53cf295b44 Parents: 40c9b25 Author: Claus Ibsen <davscl...@apache.org> Authored: Tue Mar 18 07:36:09 2014 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Mar 18 07:36:09 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/35d5dfb4/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 */