Cyclone ISO C++ API Reference Guide
dds::topic::PublicationBuiltinTopicData Class Reference

Class that contains information about available DataWriters within the system. More...

#include "BuiltinTopic.hpp"

Inherits dds::core::Value< D >.

Public Member Functions

const ::dds::core::policy::Deadlinedeadline () const
 
const ::dds::core::policy::DestinationOrderdestination_order () const
 
const ::dds::core::policy::Durabilitydurability () const
 
const ::dds::core::policy::DurabilityServicedurability_service () const
 
const ::dds::core::policy::GroupDatagroup_data () const
 
const dds::topic::BuiltinTopicKeykey () const
 
const ::dds::core::policy::LatencyBudgetlatency_budget () const
 
const ::dds::core::policy::Lifespanlifespan () const
 
const ::dds::core::policy::Livelinessliveliness () const
 
bool operator!= (const Value &other) const
 
D * operator-> ()
 
const D * operator-> () const
 
bool operator== (const Value &other) const
 
const ::dds::core::policy::Ownershipownership () const
 
const ::dds::core::policy::OwnershipStrengthownership_strength () const
 
const dds::topic::BuiltinTopicKeyparticipant_key () const
 
const ::dds::core::policy::Partitionpartition () const
 
const ::dds::core::policy::Presentationpresentation () const
 
const ::dds::core::policy::Reliabilityreliability () const
 
const ::dds::core::policy::TopicDatatopic_data () const
 
const std::string & topic_name () const
 
const std::string & type_name () const
 
const ::dds::core::policy::UserDatauser_data () const
 

Detailed Description

Class that contains information about available DataWriters within the system.

The DCPSPublication topic communicates the existence of datawriters by means of the PublicationBuiltinTopicData datatype. Each PublicationBuiltinTopicData sample in a Domain represents a datawriter in that Domain: a new PublicationBuiltinTopicData instance is created when a newly-added DataWriter is enabled, and it is disposed when that DataWriter is deleted. An updated PublicationBuiltinTopicData sample is written each time the DataWriter (or the Publisher to which it belongs) modifies a QosPolicy that applies to the entities connected to it. Also will it be updated when the writer looses or regains its liveliness.

// Get builtin subscriber
dds::domain::DomainParticipant participant(org::eclipse::cyclonedds::domain::default_id());
dds::sub::Subscriber builtinSubscriber = dds::sub::builtin_subscriber(participant);
// Get DCPSPublication builtin reader (happy flow)
string name = "DCPSPublication";
vector<dds::sub::DataReader<dds::topic::PublicationBuiltinTopicData> > readersVector;
dds::sub::find<dds::sub::DataReader<dds::topic::PublicationBuiltinTopicData>,
back_insert_iterator<vector<dds::sub::DataReader<dds::topic::PublicationBuiltinTopicData> > > >(
builtinSubscriber,
name,
back_inserter<vector<dds::sub::DataReader<dds::topic::PublicationBuiltinTopicData> > >(readersVector));
// The builtinReader can now be used just as a normal dds::sub::DataReader to get
// dds::topic::PublicationBuiltinTopicData samples.
See also
DCPS_Builtin_Topics
DCPS_Builtin_Topics_PublicationData

Definition at line 256 of file BuiltinTopic.hpp.

Member Function Documentation

◆ deadline()

const ::dds::core::policy::Deadline& dds::topic::PublicationBuiltinTopicData::deadline ( ) const

QosPolicy attached to the DataWriter

◆ destination_order()

const ::dds::core::policy::DestinationOrder& dds::topic::PublicationBuiltinTopicData::destination_order ( ) const

QosPolicy attached to the DataWriter

◆ durability()

const ::dds::core::policy::Durability& dds::topic::PublicationBuiltinTopicData::durability ( ) const

QosPolicy attached to the DataWriter

◆ durability_service()

const ::dds::core::policy::DurabilityService& dds::topic::PublicationBuiltinTopicData::durability_service ( ) const

QosPolicy attached to the DataWriter

◆ group_data()

const ::dds::core::policy::GroupData& dds::topic::PublicationBuiltinTopicData::group_data ( ) const

QosPolicy attached to the Publisher to which the DataWriter belongs

◆ key()

const dds::topic::BuiltinTopicKey& dds::topic::PublicationBuiltinTopicData::key ( ) const

Global unique identifier of the DataWriter

◆ latency_budget()

const ::dds::core::policy::LatencyBudget& dds::topic::PublicationBuiltinTopicData::latency_budget ( ) const

QosPolicy attached to the DataWriter

◆ lifespan()

const ::dds::core::policy::Lifespan& dds::topic::PublicationBuiltinTopicData::lifespan ( ) const

QosPolicy attached to the DataWriter

◆ liveliness()

const ::dds::core::policy::Liveliness& dds::topic::PublicationBuiltinTopicData::liveliness ( ) const

QosPolicy attached to the DataWriter

◆ operator!=()

template<typename D >
bool dds::core::Value< D >::operator!= ( const Value< D > &  other) const
inherited

Compare this Value with another Value

Parameters
otherValue
Returns
true if not equal

◆ operator->() [1/2]

template<typename D >
D* dds::core::Value< D >::operator-> ( )
inherited

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]

template<typename D >
const D* dds::core::Value< D >::operator-> ( ) const
inherited

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==()

template<typename D >
bool dds::core::Value< D >::operator== ( const Value< D > &  other) const
inherited

Compare this Value with another Value

Parameters
otherValue
Returns
true if equal

◆ ownership()

const ::dds::core::policy::Ownership& dds::topic::PublicationBuiltinTopicData::ownership ( ) const

QosPolicy attached to the DataWriter

◆ ownership_strength()

const ::dds::core::policy::OwnershipStrength& dds::topic::PublicationBuiltinTopicData::ownership_strength ( ) const

QosPolicy attached to the DataWriter

◆ participant_key()

const dds::topic::BuiltinTopicKey& dds::topic::PublicationBuiltinTopicData::participant_key ( ) const

Global unique identifier of the Participant to which the DataWriter belongs

◆ partition()

const ::dds::core::policy::Partition& dds::topic::PublicationBuiltinTopicData::partition ( ) const

QosPolicy attached to the Publisher to which the DataWriter belongs

◆ presentation()

const ::dds::core::policy::Presentation& dds::topic::PublicationBuiltinTopicData::presentation ( ) const

QosPolicy attached to the Publisher to which the DataWriter belongs

◆ reliability()

const ::dds::core::policy::Reliability& dds::topic::PublicationBuiltinTopicData::reliability ( ) const

QosPolicy attached to the DataWriter

◆ topic_data()

const ::dds::core::policy::TopicData& dds::topic::PublicationBuiltinTopicData::topic_data ( ) const

QosPolicy attached to the Publisher to which the DataWriter belongs

◆ topic_name()

const std::string& dds::topic::PublicationBuiltinTopicData::topic_name ( ) const

Name of the Topic used by the DataWriter

◆ type_name()

const std::string& dds::topic::PublicationBuiltinTopicData::type_name ( ) const

Type name of the Topic used by the DataWriter

◆ user_data()

const ::dds::core::policy::UserData& dds::topic::PublicationBuiltinTopicData::user_data ( ) const

QosPolicy attached to the DataWriter


The documentation for this class was generated from the following file:
dds::sub::Subscriber
A Subscriber is the object responsible for the actual reception of the data resulting from its subscr...
Definition: Subscriber.hpp:53
dds::sub::builtin_subscriber
const dds::sub::Subscriber builtin_subscriber(const dds::domain::DomainParticipant &dp)
dds::sub::DataReader
DataReader allows the applicatin to access published sample data.
Definition: DataReader.hpp:34
dds::domain::DomainParticipant
A DomainParticipant represents the local membership of the application in a Domain.
Definition: DomainParticipant.hpp:65