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 4 示例(qotm)创建一个使用“引导程序”的 UDP 服务器。此类不允许处理程序的管道。我错过了什么吗?
您可以指定ChannelInitializerfor Bootstrap.handler(..),就像在管道中具有多个处理程序的其他示例一样。
ChannelInitializer
Bootstrap.handler(..)
请记住,UDP 是无连接的,因此 UDP 通道使用单个管道处理来自多个远程主机的所有数据包。要为不同的协议设置不同的管道,您必须创建多个 UDP 通道并将它们绑定到不同的端口,就像您在 Netty 3 中所做的那样。