Home / Class/ BloatedLineDecoder Class — netty Architecture

BloatedLineDecoder Class — netty Architecture

Architecture documentation for the BloatedLineDecoder class in ReplayingDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  af862b2d_159d_726c_43fc_09fbad7e75e0["BloatedLineDecoder"]
  5d169e27_346b_6317_7621_9ae5140d3800["ReplayingDecoderTest.java"]
  af862b2d_159d_726c_43fc_09fbad7e75e0 -->|defined in| 5d169e27_346b_6317_7621_9ae5140d3800
  b8dcd54f_e711_7fd4_b20f_3f963978ae84["channelRead()"]
  af862b2d_159d_726c_43fc_09fbad7e75e0 -->|method| b8dcd54f_e711_7fd4_b20f_3f963978ae84

Relationship Graph

Source Code

codec-base/src/test/java/io/netty/handler/codec/ReplayingDecoderTest.java lines 102–108

    private static final class BloatedLineDecoder extends ChannelInboundHandlerAdapter {
        @Override
        public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
            ctx.pipeline().replace(this, "less-bloated", new LineDecoder());
            ctx.pipeline().fireChannelRead(msg);
        }
    }

Frequently Asked Questions

What is the BloatedLineDecoder class?
BloatedLineDecoder is a class in the netty codebase, defined in codec-base/src/test/java/io/netty/handler/codec/ReplayingDecoderTest.java.
Where is BloatedLineDecoder defined?
BloatedLineDecoder is defined in codec-base/src/test/java/io/netty/handler/codec/ReplayingDecoderTest.java at line 102.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free