828384858687888990
private ChannelRequest decode(String reqType, InputStream in) throws IOException { ChannelRequestCodec codec = requests.get(reqType); if (codec == null) { codec = new UnknownChannelRequestCodec(reqType); } return codec.decode(in); }