RTI Connext Modern C++ API
Version 6.0.1
|
A parent class for all queue parameter classes. More...
#include <rti/queuing/QueueParams.hpp>
Inherits rti::request::detail::EntityParamsWithSetters< ActualEntity >.
Public Member Functions | |
ActualEntity & | qos_profile (const std::string &qos_library_name, const std::string &qos_profile_name) |
Specifies an XML QoS profile that will be used to configure the quality of service of the DDS entities created. | |
ActualEntity & | shared_subscriber_name (const std::string &name) |
Sets the SharedSubscriber name associated with the SharedReaderQueues. | |
ActualEntity & | entity_name (const std::string &name) |
Sets the name of the QueueEntity. | |
Public Member Functions inherited from rti::request::detail::EntityParamsWithSetters< ActualEntity > | |
ActualEntity & | service_name (const std::string &name) |
ActualEntity & | request_topic_name (const std::string &name) |
ActualEntity & | reply_topic_name (const std::string &name) |
ActualEntity & | datawriter_qos (const dds::core::optional< dds::pub::qos::DataWriterQos > &qos) |
ActualEntity & | datareader_qos (const dds::core::optional< dds::sub::qos::DataReaderQos > &qos) |
ActualEntity & | request_type (const dds::core::optional< dds::core::xtypes::DynamicType > &type) |
ActualEntity & | reply_type (const dds::core::optional< dds::core::xtypes::DynamicType > &type) |
ActualEntity & | publisher (dds::pub::Publisher publisher) |
ActualEntity & | subscriber (dds::sub::Subscriber subscriber) |
A parent class for all queue parameter classes.
|
inline |
Specifies an XML QoS profile that will be used to configure the quality of service of the DDS entities created.
This includes the DataReader and DataWriter used to send and receive samples from a SharedReaderQueue.
Alternatively, you can set the DataReader and DataWriter QoS using datareader_qos() and datawriter_qos() methods. If you set the DataReader QoS or the DataWriter QoS the provided values will be used instead of the QoS specified in the XML qos profile.
qos_library_name | The name of the QoS library |
qos_profile_name | The name of the QoS profile inside the QoS library |
|
inline |
Sets the SharedSubscriber name associated with the SharedReaderQueues.
|
inline |
Sets the name of the QueueEntity.
The name of the QueueEntity is used along with the topic name to generate the QueueEntity's GUID. The entity name is used along with the topic name to generate a Guid. By default, entity name is null which means that the entity Guid is randomly generated.