protected void initChannel()

in java/src/main/java/com/example/aws/containerdemo/HttpServerInitializer.java [28:34]


    protected void initChannel(Channel ch) throws Exception {
        ChannelPipeline pipeline = ch.pipeline();

        pipeline.addLast(new HttpServerCodec());
        pipeline.addLast(new HttpObjectAggregator(Integer.MAX_VALUE));  
        pipeline.addLast(new HttpServerHandler());
    }