Hi In my netty sample if I configure my ServerBootstrap with AUTO_READ option as false. Then in my corresponding handler ChannelRead method is never getting invoked, only Channe
When AUTO_READ is set to false, no read operation occurs until you explicitely call channel.read();
AUTO_READ
channel.read();
When you set it to true, then read are automatically allowed and passed up to the handlers.
See here