Reader VIs
Owning Palette: LabPack
Requires: LabPack
Use the Reader VIs to more explicitly decode MessagePack data to LabVIEW types.
Palette Object | Description |
---|---|
Begin | Starts the internal decoder. |
Begin Array | Starts reading an array. |
Begin Bin | Starts reading an binary blob. |
Begin Str | Starts reading a string. |
Create | Creates an object of the Reader class. |
Create Reference | Creates a Data Value Reference (DVR). |
Destroy | Destroys a Reader class object. |
Destroy Reference | Destroys a Data Value Reference (DVR) of a Reader class object. |
End | Finishes decoding MessagePack data. |
End Array | Finishes reading an array. |
End Bin | Finishes reading a binary blob. |
End Map | Finishes reading a map. |
End Str | Finishes reading a string. |
Read Bin | Reads and decodes a binary blob. |
Read Bool | Reads and decodes a boolean. |
Read Bytes | Reads bytes from the internal decoder's buffer. |
Read Double | Reads and decodes a double-precision (8-byte) floating point number. |
Read False | Reads and decodes a False boolean. |
Read Float | Reads and decodes a single-precision (4-byte) floating point number. |
Read I8 | Reads and decodes a signed 8-bit integer. |
Read I16 | Reads and decodes a signed 16-bit integer. |
Read I32 | Reads and decodes a signed 32-bit integer. |
Read I64 | Reads and decodes a signed 64-bit integer. |
Read Int | Reads and decodes a signed integer. |
Read Is Error | Checks if the internal decoder has an error. |
Read Is OK | Checks if the internal decoder is OK. |
Read Nil | Reads and decodes a Nil value. |
Read Status | Gets the latest status of the internal decoder. |
Read Status Message | Gets the latest status message of the internal decoder. |
Read Str | Reads and decodes a string. |
Read True | Reads and decodes a True boolean. |
Read U8 | Reads and decodes an unsigned 8-bit integer. |
Read U16 | Reads and decodes an unsigned 16-bit integer. |
Read U32 | Reads and decodes an unsigned 32-bit integer. |
Read U64 | Reads and decodes an unsigned 64-bit integer. |
Read Uint | Reads and decodes an unsigned integer. |