Byte By Byte Frame Parser
class ByteByByteFrameParser(unpacker: (b: Byte) -> List<ByteArray>, resetUnpacker: () -> Unit? = null) : FrameParser(source)
Parser that calls a functional unpacker with each byte. The unpacker must maintain its internal state and return 0..N complete frames on each feed(byte) call.