0
Netty中多ChannelPipelineFactories如果我創建多個ConnectionlessBootstrap
實例,然後使用像udpBootstrap.setPipeline(pipelineFactory.getPipeline());
代碼設置ChannelPipeline
他們將在DatagramChannel
的使用下面的代碼創建的: -是可能的UDP傳輸Netty中
DatagramChannel datagramChannel = (DatagramChannel) udpBootstrap
.bind(new InetSocketAddress(host, 0));
基於工廠在其流水線中有合適的解碼器和編碼器?不管或引導/ pipelinefactory的,DatagramChannel
的只能有一個相關的管道。
場景是我想用UDP來解碼/編碼不同的網絡協議。