标签: asynchronous events netty nio timing
我想知道如何正确计算服务器响应的纯时间?因为如果我仅用HttpClient包装System.currentTimeMillis的调用,我将包括将事件添加到EventLoop,等待处理等的时间。
HttpClient
System.currentTimeMillis
我知道我可以使用ChannelHandlers来进行更细化,但是我可以在较低级别上使用吗?
ChannelHandlers
答案 0 :(得分:1)
在ChannelHandler中进行操作是在netty中执行类似操作的正确方法。