ChannelHandlerContext ctx, MessageEvent e) throws Exception
{
InputStream in = (InputStream) e.getMessage();
try
{
HessianInput hin = new HessianInput(in);
while (true)
{
Object obj = hin.readObject(null);
Channels.fireMessageReceived(ctx, obj);
}
}
catch (Exception ex)
{