Can I call `Channel.write()` in non

For some reason, I need write messages to channel(the operation is at server side, and the channel is already connected.) in non-netty thread. But I found that my client can't get the message though I got the success future. So how can I do this in right way?

And my netty version is 3.6.6-final.


channel.write()是线程安全的,所以不用担心。

链接地址: http://www.djcxy.com/p/95216.html

上一篇: Netty与阻塞套接字性能

下一篇: 我可以在非Channel中调用`Channel.write()`