Update Array
Convenience Methods
Declaration
TibrvStatusupdate
element_type
Array
(
const char* fieldName,
const tibrv_scalar_type
value,
tibrv_u32 numElements,
tibrv_u16 fieldId=0);
Purpose
Update a field containing an array value.
Remarks
Each convenience method in this family locates a field (by name or identifier) and updates its data.
The type of the existing field (within the message) and the type of the updating value
must match. The number of elements can change.
Pointer data previously extracted from the field remain valid and unchanged until the message is destroyed; that is, even updating the field’s value does not invalidate pointer data. (See Pointer Snapshot.)
Method Name |
Element Type |
Type Description |
|
|
8-bit integer array |
|
|
8-bit unsigned integer array |
|
|
16-bit integer array |
|
|
16-bit unsigned integer array |
|
|
32-bit integer array |
|
|
32-bit unsigned integer array |
|
|
64-bit integer array |
|
|
64-bit unsigned integer array |
|
|
32-bit floating point array |
|
|
64-bit floating point array |
Parameter |
Description |
|
Update a field with this name. |
|
Update the message field to this array value. The method copies the new array into the existing field. |
|
When updating an array type, the program supplies the count of array elements in this parameter. |
|
Update the field with this identifier. Zero is a special value that signifies no field identifier. It is illegal to add a field that has both a |