Deprecated code in 5.x documentation
Author: didfanCreated Aug 31, 2026Updated Sep 4, 2026
The "Getting Started" article uses the deprecated in 4.2 way of creating EventLoopGroup in multiple places. It uses:
new NioEventLoopGroup()
instead of new Factory way:
new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory())
Source: netty/netty