Hi<div><br></div><div>The easiest solution is to wrap all your messages in a &#39;union type&#39; as described in this protobuf tutorial: <a href="http://code.google.com/intl/da-DK/apis/protocolbuffers/docs/techniques.html#union">http://code.google.com/intl/da-DK/apis/protocolbuffers/docs/techniques.html#union</a></div>
<div><br></div><div>Alternatively you will have to manually prepend some kind of command id to identity the kind of protobuf message being sent, but unlikely to be worth the trouble.</div><div><br></div><div><br></div><div>
Regards</div><div>Jannick</div><div><a href="http://code.google.com/intl/da-DK/apis/protocolbuffers/docs/techniques.html#union"></a><br><br><div class="gmail_quote">2010/1/2 ritom <span dir="ltr">&lt;<a href="mailto:ritom@hotmail.com">ritom@hotmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
Can somebody please help me understand the google protobuf support within<br>
Netty.<br>
In the LocalTimeServerPipelineFactory example we have<br>
<br>
p.addLast(&quot;protobufDecoder&quot;, new<br>
ProtobufDecoder(LocalTimeProtocol.Locations.getDefaultInstance()));<br>
<br>
That would mean we can now receive the Locations message in<br>
TimeServerHandler.<br>
<br>
 public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) {<br>
        Locations locations = (Locations) e.getMessage();<br>
<br>
How would I implement support for multiple incoming message types where you<br>
might be receiving different types of request from the client. Lets say you<br>
are receiving Logon first then BalanceRequest, TransferRequest and so on.<br>
Also server will reply with multiple Message Types depending on the request.<br>
Can somebody please please help.<br>
<br>
Tom<br>
<font color="#888888">--<br>
View this message in context: <a href="http://n2.nabble.com/Google-protocol-Buffer-Codec-tp4241485p4241485.html" target="_blank">http://n2.nabble.com/Google-protocol-Buffer-Codec-tp4241485p4241485.html</a><br>
Sent from the Netty User Group mailing list archive at Nabble.com.<br>
_______________________________________________<br>
netty-users mailing list<br>
<a href="mailto:netty-users@lists.jboss.org">netty-users@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/netty-users" target="_blank">https://lists.jboss.org/mailman/listinfo/netty-users</a><br>
</font></blockquote></div><br></div>