RTI Connext Traditional C++ API
Version 5.2.3
|
A sample for writing data. More...
Inherits connext::details::SampleBase< T, I >.
Public Member Functions | |
WriteSample () | |
Creates a sample with default data and info values. | |
WriteSample (const WriteSample< T > &other) | |
Creates a sample making a deep copy of another sample. | |
WriteSample (const T &data) | |
Creates a sample making a deep copy of another sample. | |
WriteSample (WriteSampleRef< T > wsref) | |
Creates a sample deep copying the data and info the source references. | |
T & | data () |
Gets the data this sample contains. | |
WriteParams_t & | info () |
Gets the write parameters. | |
const T & | data () |
Gets the data this sample contains. | |
const WriteParams_t & | info () |
Gets the write parameters. | |
SampleIdentity_t | identity () const |
Gets the identity of this sample. | |
A sample for writing data.
WriteSamples are value types containing data that can be sent and optional parameters that configure how the data is written.
The data is automatically initialized using the corresponding TypeSupport for type T
, and the memory is released in the destructor.
When the data already exists and allocating a new instance is not required, connext::WriteSampleRef can be used instead.
T | The data type that this sample contains |
|
inline |
Creates a sample with default data and info values.
The data is deeply initialized using the corresponding TypeSupport
|
inline |
Creates a sample making a deep copy of another sample.
connext::WriteSample< T >::WriteSample | ( | const T & | data | ) |
Creates a sample making a deep copy of another sample.
|
inline |
Creates a sample deep copying the data and info the source references.
T& connext::WriteSample< T >::data | ( | ) |
Gets the data this sample contains.
WriteParams_t& connext::WriteSample< T >::info | ( | ) |
Gets the write parameters.
The parameters are input and output to write operations. They can be set to configure the write operation (e.g. setting a specific publication timestamp) or they can be looked up afterward (e.g. what was the actual timestamp the sample was written with).
const T& connext::WriteSample< T >::data | ( | ) |
Gets the data this sample contains.
const WriteParams_t& connext::WriteSample< T >::info | ( | ) |
Gets the write parameters.
The parameters are input and output to write operations. They can be set to configure the write operation (e.g. setting a specific publication timestamp) or they can be looked up afterward (e.g. what was the actual timestamp the sample was written with).
|
inline |
Gets the identity of this sample.
The identity is assigned by the middleware after writing.