Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
出于某种原因,我需要在非netty线程中将消息写入通道(操作在服务器端,并且通道已经连接。)。但是我发现我的客户虽然获得了成功的未来,却无法得到消息。那么我怎样才能以正确的方式做到这一点呢?
而我的 netty 版本是 3.6.6-final。
channel.write() 是线程安全的,所以不用担心。