RTI Connext C++ API
Version 5.0.0
|
Built-in type consisting of a variable-length array of opaque bytes and a string that is the key. More...
Public Member Functions | |
DDS_KeyedOctets () | |
Constructor. | |
DDS_KeyedOctets (int key_size, int size) | |
Constructor that specifies the allocated sizes. | |
~DDS_KeyedOctets () | |
Destructor. | |
Public Attributes | |
char * | key |
Instance key associated with the specified value. | |
int | length |
Number of octets to serialize. | |
unsigned char * | value |
DDS_Octets array value. | |
Built-in type consisting of a variable-length array of opaque bytes and a string that is the key.
|
inline |
Constructor.
The default constructor initializes the newly created object with NULL key, NULL value, and zero length.
|
inline |
Constructor that specifies the allocated sizes.
After this method is called, key is initialized with the empty string and length is set to zero.
If a memory allocation failure occurs, and the DDS_KeyedOctets structure is allocated but the array and/or key string inside of it cannot be, the unallocated member will be NULL.
|
inline |
Destructor.
char* DDS_KeyedOctets::key |
Instance key associated with the specified value.
int DDS_KeyedOctets::length |
Number of octets to serialize.
unsigned char* DDS_KeyedOctets::value |
DDS_Octets array value.