NOTE
Netty Learning Resources
A practical Netty learning roadmap from event loops and pipelines through buffers, codecs, backpressure, and version-pinned source reading.
This is a historical learning note and may contain outdated or incomplete understanding.
Recommended order:
- TCP byte-stream/framing fundamentals;
EventLoopGroup,Channel,ChannelFuture;ChannelPipelineand inbound/outbound handlers;- codecs and partial-message handling;
ByteBuf, reference counting, pooling/direct memory;- write buffering/backpressure and event-loop blocking rules;
- bootstrap/register/bind source flow;
- source analysis against the exact Netty release used by the project.
Netty internals evolve, so use current official docs/Javadocs/source tags for exact class behavior.