0

For a server using Netty 4.0,

1) Can i use one handler to handle data coming from clients which are developed in different languages?(for example : c#, flash, objective-c, javascript)

2) Should i use ChannelInboundByteHandler or ChannelInboundMessageHandler for the above situation?

thank you..

4

1 回答 1

0

1)是的,您可以使用单个处理程序来处理来自不同客户端的数据。

如果您的服务器处理客户端发送的行字节,那么您可以在服务器端进行处理,但如果它们正在发送对象,那么您应该在服务器端创建适当的对象。

您可以从http://www.znetdevelopment.com/blogs/2009/04/21/netty-using-handlers/清楚地了解处理程序

2)第二个问题的答案取决于您的要求,您可以根据您的要求使用其中任何一个。

于 2013-03-07T08:31:13.247 回答