根据文档New and noteworthy in 4.0,netty4提供了一个新的bootstrap API,doc提供了以下代码示例:
public static void main(String[] args) throws Exception {
// Configure the server.
EventLoopGroup bossGroup = new NioEventLoopGroup();
EventLoopGroup workerGroup = new NioEventLoopGroup();
try {
ServerBootstrap b = new ServerBootstrap();
b.group(bossGroup, workerGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_BACKLOG, 100)
.localAddress(8080)
.childOption(ChannelOption.TCP_NODELAY, true)
.childHandler(new ChannelInitializer<SocketChannel>() {
@Override
public void initChannel(SocketChannel ch) throws Exception {
ch.pipeline().addLast(handler1, handler2, ...);
}
});
// Start the server.
ChannelFuture f = b.bind().sync();
// Wait until the server socket is closed.
f.channel().closeFuture().sync();
} finally {
// Shut down all event loops to terminate all threads.
bossGroup.shutdownGracefully();
workerGroup.shutdownGracefully();
// Wait until all threads are terminated.
bossGroup.terminationFuture().sync();
workerGroup.terminationFuture().sync();
}
}
代码使用ServerBootStrap.option
设置ChannelOption.SO_BACKLOG
,然后使用ServerBootStrap.childOption
设置ChannelOption.TCP_NODELAY
。
ServerBootStrap.option
和ServerBootStrap.childOption
之间有什么区别?我怎么知道哪个选项应该是option
哪个应该是childOption
?
答案 0 :(得分:7)
ServerBootStrap.option和。之间的区别是什么? ServerBootStrap.childOption?
我们使用ServerBootStrap.option
设置的参数适用于新创建的ServerChannel的ChannelConfig,即侦听并接受客户端连接的服务器套接字。调用bind()或connect()方法时,将在服务器通道上设置这些选项。这个频道是每台服务器一个。
ServerBootStrap.childOption
适用于频道的channelConfig,一旦serverChannel接受客户端连接,它就会被创建。此通道是每个客户端(或每个客户端套接字)。
因此,ServerBootStrap.option
参数适用于正在侦听连接的服务器套接字(服务器通道),并且ServerBootStrap.childOption
参数适用于一旦服务器套接字接受连接后创建的套接字。
同样可以扩展到attr
类中的childAttr
vs handler
和childHandler
vs ServerBootstrap
方法。
我怎么知道哪个选项应该是一个选项,哪个应该是 一个childOption?
支持哪种ChannelOptions取决于我们使用的渠道类型。 您可以参考您正在使用的ChannelConfig的API文档。 http://netty.io/4.0/api/io/netty/channel/ChannelConfig.html及其子类。您应该为每个ChannelConfig找到可用选项部分。
答案 1 :(得分:0)
换句话说,ServerBootStrap.option
与bossGroup一起使用,ServerBootStrap.childOption
与workerGroup一起使用。