Netty + ProtoBuffer:一个连接的几个通信消息
2022-09-03 02:27:05
在阅读Netty教程时,我发现了如何集成Netty和Google协议缓冲区的简单描述。我已经开始研究它的示例(因为文档中没有更多信息),并编写了一个简单的应用程序,如示例本地时间应用程序。但是这个例子在PipeFactory Class中使用静态初始化,例如:
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelPipelineFactory;
import org.jboss.netty.handler.codec.protobuf.ProtobufDecoder;
import org.jboss.netty.handler.codec.protobuf.ProtobufEncoder;
import org.jboss.netty.handler.codec.protobuf.ProtobufVarint32FrameDecoder;
import org.jboss.netty.handler.codec.protobuf.ProtobufVarint32LengthFieldPrepender;
import static org.jboss.netty.channel.Channels.pipeline;
/**
* @author sergiizagriichuk
*/
class ProtoCommunicationClientPipeFactory implements ChannelPipelineFactory {
public ChannelPipeline getPipeline() throws Exception {
ChannelPipeline p = pipeline();
p.addLast("frameDecoder", new ProtobufVarint32FrameDecoder());
p.addLast("protobufDecoder", new ProtobufDecoder(Communication.DataMessage.getDefaultInstance()));
p.addLast("frameEncoder", new ProtobufVarint32LengthFieldPrepender());
p.addLast("protobufEncoder", new ProtobufEncoder());
p.addLast("handler", new ProtoCommunicationClientHandler());
return p;
}
}
(请看一下行)并且只能为类创建一个工厂(据我所知),我的意思是方法。因此,在这种情况下,我可以使用一条消息发送到服务器,并使用一条消息从服务器接收,这对我不利,我认为不仅对我来说:(如何仅对一个连接使用不同的消息?也许我可以创建一些这样的p.addLast("protobufDecoder", new ProtobufDecoder(Communication.DataMessage.getDefaultInstance()));
ClientBootstrap
bootstrap.setPipelineFactory()
protobufDecoder
p.addLast("protobufDecoder", new ProtobufDecoder(Communication.DataMessage.getDefaultInstance()));
p.addLast("protobufDecoder", new ProtobufDecoder(Communication.TestMessage.getDefaultInstance()));
p.addLast("protobufDecoder", new ProtobufDecoder(Communication.SrcMessage.getDefaultInstance()));
还是其他技术?多谢。