如果我要编写以下代码段:
class SimpleHandler extends SimpleChannelUpstreamHandler {
...
public static void main( String[] args ) throws Exception {
ServerBootstrap b = new ServerBootstrap(
new NioServerSocketChannelFactory(
Executors.newCachedThreadPool(),
Executors.newCachedThreadPool(),
10 ));
b.setPipelineFactory( new ChannelPipelineFactory() {
public ChannelPipeline getPipeline() throws Exception {
return Channels.pipeline( new SimpleHandler() );
}
});
b.bind( new InetSocketAddress( p ));
}
并假设以下情况:
- 通道 C1 有输入
- netty 将线程 T1 分配给通道 C1
- 在线程 T1 从通道 C1 读取所有输入后,当它仍在处理输入时,更多输入到达通道 C1
我的问题是:netty会为通道C1分配一个新线程(假设线程池中有空闲线程)?
提前致谢