ContentFilteredTopic is a specialization of TopicDescription that allows for content-based subscriptions.
More...
#include "ContentFilteredTopic.hpp"
Inherits dds::topic::TopicDescription.
template<typename T>
class dds::topic::ContentFilteredTopic< T >
ContentFilteredTopic is a specialization of TopicDescription that allows for content-based subscriptions.
ContentFilteredTopic describes a more sophisticated subscription which indicates that the Subscriber does not necessarily want to see all values of each instance published under the Topic. Rather, it only wants to see the values whose contents satisfy certain criteria. Therefore this class must be used to request content-based subscriptions.
The selection of the content is done using the SQL based filter with parameters to adapt the filter clause.
Example
std::vector<std::string> params;
params.push_back("1");
"ContentFilteredTopicName",
filter);
- See also
- Topic Definition
Definition at line 36 of file ContentFilteredTopic.hpp.
◆ DataType
◆ ContentFilteredTopic()
Creates a ContentFilteredTopic be used as to perform content-based subscriptions.
The ContentFilteredTopic only relates to samples published under that Topic, filtered according to their content. The filtering is done by means of evaluating a logical expression that involves the values of some of the data-fields in the sample.
See SQL expression info
- Parameters
-
- Exceptions
-
◆ domain_participant()
This operation returns the DomainParticipant associated with the TopicDescription.
Note that there is exactly one DomainParticipant associated with each TopicDescription.
- Returns
- the DomainParticipant
◆ filter_expression()
◆ filter_parameters() [1/2]
Get the filter expression parameters.
See SQL expression info
- Returns
- the filter parameters as a sequence
◆ filter_parameters() [2/2]
template<typename T>
template<typename FWDIterator >
Sets the query parameters.
See SQL expression info
- Template Parameters
-
begin | Iterator pointing to the beginning of the parameters to set |
end | Iterator pointing to the end of the parameters to set |
- Returns
- void
- Exceptions
-
◆ is_nil()
template<typename DELEGATE>
Check if the referenced object is nil.
In other words, check if the reference is pointing to a null object.
- Returns
- true if the referenced object is null.
◆ name()
const std::string& dds::topic::TopicDescription::name |
( |
| ) |
const |
|
inherited |
◆ operator!=() [1/2]
template<typename DELEGATE>
Special operator!= used to check if this reference object does not equal the dds::core::null reference.
The non-null-check can be done like this:
if (r != dds::core::null) {
}
- Returns
- true if this reference is not null.
◆ operator!=() [2/2]
template<typename DELEGATE>
template<typename R >
Compares two Reference objects and returns true if they are not equal.
Inequality is based on the referential inequality of the object being pointed to.
- Parameters
-
ref | the other Reference object |
- Returns
- true when not equal
◆ operator->() [1/2]
template<typename DELEGATE>
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 Reference and on all its subclasses as follows:
my_dds_entity.standard_function();
my_dds_entity->vendor_specific_extension();
- Returns
- a reference to delegate.
◆ operator->() [2/2]
template<typename DELEGATE>
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 Reference and on all its subclasses as follows:
my_dds_entity.standard_function();
my_dds_entity->vendor_specific_extension();
- Returns
- a reference to delegate.
◆ operator==() [1/2]
template<typename DELEGATE>
Special operator== used to check if this reference object equals the dds::core::null reference.
The null-check can be done like this:
if (r == dds::core::null) {
}
- Returns
- true if this reference is null.
◆ operator==() [2/2]
template<typename DELEGATE>
template<typename R >
Compares two Reference objects and returns true if they are equal.
Equality is based on the referential equality of the object being pointed.
- Parameters
-
ref | the other Reference object |
- Returns
- true when equal
◆ topic()
Return the associated Topic.
- Returns
- the Topic
- Exceptions
-
◆ type_name()
const std::string& dds::topic::TopicDescription::type_name |
( |
| ) |
const |
|
inherited |
This operation returns the registered name of the data type associated with the TopicDescription.
- Returns
- the type_name
The documentation for this class was generated from the following file: