-
Notifications
You must be signed in to change notification settings - Fork 0
Record reader
Jérôme Beau edited this page Jul 15, 2018
·
4 revisions
A RecordReader
allows to raw data as basic types (numbers, strings, etc.) from an Input buffer and put it in Record properties:
-
bits using
readByteBits(propertyName, bitLimit, nameForRemainingBits)
-
half bytes (2 * 4 bits) using
readNibbles(nameForFirstBits, nameForLastBits)
-
bytes (8 bits) using
readByte(propertyName)
-
signed int using
readSignedInt(propertyName)