聊聊NioServerSocketChannel的初始化源码
应用开发 2025-10-06 13:09:12
0

复制ServerBootstrap serverBootstrap = new ServerBootstrap(); serverBootstrap.group(boss,聊聊work) .channel(NioServerSocketChannel.class) .childOption(ChannelOption.TCP_NODELAY,true) .childAttr(AttributeKey.newInstance("childAttr"),"childAttrValue") .handler(...) .childHandler(...); serverBootstrap.bind(8888).sync(); 1.2.3.4.5.6.7.8.