* @param opcode the TCP command opcode
* @return the parser or null if no such command has been registered.
*/
public BinaryCommandParser createParser(byte opcode, Channel channel, ByteOrder byteOrder)
{
BinaryCommandParserFactory factory = _binaryParsers.get(opcode);
return (null != factory) ? factory.createParser(channel, byteOrder) : null;
}