标签: netty
我正在编写一个带有池连接的netty HTTP客户端,现在我在构建通道管道时添加了pipeline.addLast("Timeout", new ReadTimeoutHandler(readTimeout));。
pipeline.addLast("Timeout", new ReadTimeoutHandler(readTimeout));
所以在ReadTimeoutException我想关闭这个连接,而不会打扰池中的任何其他连接,现在我的疑问是我应该调用channel.close()和channel.disconnect(),或者只调用channel。 close()就足够了。
ReadTimeoutException
非常感谢任何建议。