Public Member Functions | |
| ClientParams () | |
| ClientParams (ClientParams other) | |
| ClientParams | service_name (String service_name) |
| ClientParams | instance_name (String instance_name) |
| ClientParams | request_topic_name (String req_topic) |
| ClientParams | reply_topic_name (String rep_topic) |
| ClientParams | datawriter_qos (DataWriterQos qos) |
| ClientParams | datareader_qos (DataReaderQos qos) |
| ClientParams | publisher (Publisher publisher) |
| ClientParams | subscriber (Subscriber subscriber) |
| ClientParams | domain_participant (DomainParticipant part) |
| String | service_name () |
| String | instance_name () |
| String | request_topic_name () |
| String | reply_topic_name () |
| DataWriterQos | datawriter_qos () |
| DataReaderQos | datareader_qos () |
| Publisher | publisher () |
| Subscriber | subscriber () |
| DomainParticipant | domain_participant () |
Used to pass configuration parameters when constructing a Client.
ClientParams is a valuetype that serves as a container of configuration parameters of a Client. It is designed to mimic the named-parameters feature available in some programming languages, which improves readability.
| ClientParams | ( | ) |
Default constructor
| ClientParams | ( | ClientParams | other | ) |
Copy constructor
| ClientParams datareader_qos | ( | DataReaderQos | qos | ) |
Assign the DataReaderQos configured in this instance of ClientParams.
| DataReaderQos datareader_qos | ( | ) |
Access the DataReaderQos configured in this instance of ClientParams.
| ClientParams datawriter_qos | ( | DataWriterQos | qos | ) |
Assign the DataWriterQos configured in this instance of ClientParams.
| DataWriterQos datawriter_qos | ( | ) |
Access the DataWriterQos configured in this instance of ClientParams.
| ClientParams domain_participant | ( | DomainParticipant | part | ) |
Assign the DomainParticipant configured in this instance of ClientParams.
| DomainParticipant domain_participant | ( | ) |
Access the DomainParticipant configured in this instance of ClientParams.
| ClientParams instance_name | ( | String | instance_name | ) |
Assign the instance_name configured in this instance of ClientParams.
| String instance_name | ( | ) |
Access the instance_name configured in this instance of ClientParams.
| ClientParams publisher | ( | Publisher | publisher | ) |
Assign the Publisher configured in this instance of ClientParams.
| Publisher publisher | ( | ) |
Access the Publisher configured in this instance of ClientParams.
| ClientParams reply_topic_name | ( | String | rep_topic | ) |
Assign the reply_topic_name configured in this instance of ClientParams.
| String reply_topic_name | ( | ) |
Access the reply_topic_name configured in this instance of ClientParams.
| ClientParams request_topic_name | ( | String | req_topic | ) |
Assign the request_topic_name configured in this instance of ClientParams.
| String request_topic_name | ( | ) |
Access the request_topic_name configured in this instance of ClientParams.
| ClientParams service_name | ( | String | service_name | ) |
Assign the service_name configured in this instance of ClientParams.
| String service_name | ( | ) |
Access the service_name configured in this instance of ClientParams.
| ClientParams subscriber | ( | Subscriber | subscriber | ) |
Assign the Subscriber configured in this instance of ClientParams.
| Subscriber subscriber | ( | ) |
Access the Subscriber configured in this instance of ClientParams.