protected override void Decode(IChannelHandlerContext context, IByteBuffer input, List <object> output) { while (input.IsReadable()) { output.Add(decoder.DecodeRequest(input)); } }