This class encapsulates the data and info meta-data associated with DDS samples.
More...
#include "Sample.hpp"
Inherits dds::core::Value< D >.
template<typename T>
class dds::sub::Sample< T >
This class encapsulates the data and info meta-data associated with DDS samples.
It is normally used with dds::sub::LoanedSamples:
for (it = samples.
begin(); it != samples.
end(); ++it) {
}
Or more implicitly:
for (it = samples.
begin(); it != samples.
end(); ++it) {
const Foo::Bar&
data = it->data();
}
- See also
- DataSample for more information
-
SampleInfo for more information
-
Subscription for more information
Definition at line 30 of file Sample.hpp.
◆ DataType
Convenience typedef for the type of the data sample.
Definition at line 72 of file Sample.hpp.
◆ Sample() [1/3]
Create a sample with invalid data.
◆ Sample() [2/3]
Creates a Sample instance.
- Parameters
-
data | the data |
info | the sample info |
◆ Sample() [3/3]
Copies a sample instance.
- Parameters
-
other | the sample instance to copy |
◆ data() [1/2]
Gets the data.
- Returns
- the data
◆ data() [2/2]
Sets the data.
- Parameters
-
◆ info() [1/2]
Gets the info.
- Returns
- the info
◆ info() [2/2]
Sets the info.
- Parameters
-
◆ operator!=()
Compare this Value with another Value
- Parameters
-
- Returns
- true if not equal
◆ operator->() [1/2]
The operator->() is provided to be able to directly invoke functions on the delegate.
The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Value and on all its subclasses as follows:
my_dds_value.standard_function();
my_dds_value->vendor_specific_extension();
- Returns
- a reference to delegate.
◆ operator->() [2/2]
The operator->() is provided to be able to directly invoke functions on the delegate.
The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Value and on all its subclasses as follows:
my_dds_value.standard_function();
my_dds_value->vendor_specific_extension();
- Returns
- a reference to delegate.
◆ operator==()
Compare this Value with another Value
- Parameters
-
- Returns
- true if equal
The documentation for this class was generated from the following file: