StreamBinaryReader¶
- class dsviper.StreamBinaryReader(stream_raw_reading)¶
Bases:
objectA class used to read data through the StreamRawReading interface (handle endianness).
- read_blob_id() ValueBlobId¶
Read and return a blob_id.
- read_bool() bool¶
Read and return a Python bool.
- read_commit_id() ValueCommitId¶
Read and return a commit_id.
- read_double() float¶
Read and return a Python float.
- read_float() float¶
Read and return a Python float.
- read_int16() int¶
Read and return a Python int.
- read_int32() int¶
Read and return a Python int.
- read_int64() int¶
Read and return a Python int.
- read_int8() int¶
Read and return a Python int.
- read_string() str¶
Read and return a Python str.
- read_uint16() int¶
Read and return a Python int.
- read_uint32() int¶
Read and return a Python int.
- read_uint64() int¶
Read and return a Python int.
- read_uint8() int¶
Read and return a Python int.
- stream_reading() StreamReading¶
Return the StreamReading interface.