From 620c3e025ac5c5aaedca94f3e2aa2cad53434cc3 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Fri, 17 May 2013 22:16:29 +0200 Subject: [PATCH] Just some tiny javadoc fixes --- transport/src/main/java/io/netty/channel/ChannelPipeline.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/transport/src/main/java/io/netty/channel/ChannelPipeline.java b/transport/src/main/java/io/netty/channel/ChannelPipeline.java index 45df90dd63..f9f7944dd0 100644 --- a/transport/src/main/java/io/netty/channel/ChannelPipeline.java +++ b/transport/src/main/java/io/netty/channel/ChannelPipeline.java @@ -153,7 +153,6 @@ import java.util.NoSuchElementException; *
  • Protocol Decoder - translates binary data (e.g. {@link ByteBuf}) * into a Java object.
  • *
  • Protocol Encoder - translates a Java object into binary data.
  • - *
  • ExecutionHandler - applies a thread model.
  • *
  • Business Logic Handler - performs the actual business logic * (e.g. database access).
  • * @@ -164,14 +163,13 @@ import java.util.NoSuchElementException; * {@link ChannelPipeline} pipeline = ...; * pipeline.addLast("decoder", new MyProtocolDecoder()); * pipeline.addLast("encoder", new MyProtocolEncoder()); - * pipeline.addLast("executor", new ExecutionHandler(...)); * pipeline.addLast("handler", new MyBusinessLogicHandler()); * * *

    Thread safety

    *

    * A {@link ChannelHandler} can be added or removed at any time because a - * {@link ChannelPipeline} is thread safe. For example, you can insert an + * {@link ChannelPipeline} is thread safe. For example, you can insert an * encryption handler when sensitive information is about to be exchanged, * and remove it after the exchange. */