tibrvMsg_GetFieldByIndex()
Function
Declaration
tibrv_statustibrvMsg_GetFieldByIndex
(
tibrvMsg message,
tibrvMsgField* field,
tibrv_u32 fieldIndex);
Purpose
Get a field from a message by an index.
Remarks
Programs can loop through all the fields of a message, to retrieve each field in turn using an integer index.
The function copies scalar data into the program’s field struct. Pointer data extracted from the field remain valid until the message is destroyed; that is, even removing the field or updating the field’s value does not invalidate pointer data.
Add, remove and update calls can perturb the order of fields (which, in turn, affects the results when a program gets a field by index).
Parameter |
Description |
|
Get the field from this message. |
|
The program supplies a pointer to a tibrvMsgField struct; the function overwrites the contents of the struct, using information from the message field. |
|
Get the field with this index. Zero specifies the first field. |