From c2f38fb6d3299cf9c479164f6f18e1e18fee6b5d Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 3 Sep 2008 03:58:20 +0000 Subject: [PATCH] More story in ChannelPipelineFactory --- .../java/org/jboss/netty/channel/ChannelPipelineFactory.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/jboss/netty/channel/ChannelPipelineFactory.java b/src/main/java/org/jboss/netty/channel/ChannelPipelineFactory.java index c25f90b5f7..756d4f5b4e 100644 --- a/src/main/java/org/jboss/netty/channel/ChannelPipelineFactory.java +++ b/src/main/java/org/jboss/netty/channel/ChannelPipelineFactory.java @@ -24,6 +24,10 @@ package org.jboss.netty.channel; /** * Creates a new {@link ChannelPipeline} for a new {@link Channel}. + *

+ * This interface was introduced to initialize the {@link ChannelPipeline} of + * the child channel accepted by a server-side, but it's safe to use it for + * any other purposes. * * @author The Netty Project (netty-dev@lists.jboss.org) * @author Trustin Lee (tlee@redhat.com)