Fast DDS  Version 3.3.0
Fast DDS
Loading...
Searching...
No Matches
RTPSParticipantAttributes.hpp
1// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
18
19#ifndef FASTDDS_RTPS_ATTRIBUTES__RTPSPARTICIPANTATTRIBUTES_HPP
20#define FASTDDS_RTPS_ATTRIBUTES__RTPSPARTICIPANTATTRIBUTES_HPP
21
22#include <memory>
23#include <sstream>
24
25#include <fastcdr/cdr/fixed_size_string.hpp>
26
27#include <fastdds/rtps/attributes/BuiltinTransports.hpp>
28#include <fastdds/rtps/attributes/ExternalLocators.hpp>
29#include <fastdds/rtps/attributes/PropertyPolicy.hpp>
30#include <fastdds/rtps/attributes/ResourceManagement.hpp>
31#include <fastdds/rtps/attributes/RTPSParticipantAllocationAttributes.hpp>
32#include <fastdds/rtps/attributes/ThreadSettings.hpp>
33#include <fastdds/rtps/common/Locator.hpp>
34#include <fastdds/rtps/common/PortParameters.hpp>
35#include <fastdds/rtps/common/Time_t.hpp>
36#include <fastdds/rtps/common/Types.hpp>
37#include <fastdds/rtps/flowcontrol/FlowControllerDescriptor.hpp>
38#include <fastdds/rtps/transport/network/NetmaskFilterKind.hpp>
39#include <fastdds/rtps/transport/TransportInterface.hpp>
40#include <fastdds/fastdds_dll.hpp>
41
42namespace eprosima {
43namespace fastdds {
44namespace rtps {
45
50{
51 static constexpr const char* SIMPLE = "SIMPLE";
52 static constexpr const char* SERVER = "SERVER";
53 static constexpr const char* CLIENT = "CLIENT";
54 static constexpr const char* SUPER_CLIENT = "SUPER_CLIENT";
55 static constexpr const char* BACKUP = "BACKUP";
56 static constexpr const char* NONE = "NONE";
57 static constexpr const char* EXTERNAL = "EXTERNAL";
58 static constexpr const char* UNKNOWN = "UNKNOWN";
59};
60
61} // namespace rtps
62} // namespace fastdds
63
64namespace fastdds {
65namespace rtps {
66
96
97inline std::ostream& operator <<(
98 std::ostream& output,
99 const DiscoveryProtocol& discovery_protocol)
100{
101 switch (discovery_protocol)
102 {
105 break;
108 break;
111 break;
114 break;
117 break;
120 break;
123 break;
124 default:
126 }
127 return output;
128}
129
136FASTDDS_EXPORTED_API bool get_server_client_default_guidPrefix(
137 int id,
139
140// Port used if the ros environment variable doesn't specify one
141constexpr uint16_t DEFAULT_ROS2_SERVER_PORT = 11811;
142// Port used by default for tcp transport
143constexpr uint16_t DEFAULT_TCP_SERVER_PORT = 42100;
144
146FASTDDS_TODO_BEFORE(4, 0, "Change it to uint8_t (implies also changing [de]serializations)");
154
155#define BUILTIN_DATA_MAX_SIZE 512
156
158class PDP;
159class BuiltinProtocols;
160
161typedef struct PDPFactory
162{
163 // Pointer to the PDP creator
164 PDP* (*CreatePDPInstance)(BuiltinProtocols*);
165 // Pointer to the PDP destructor
167 PDP*);
168
170 const struct PDPFactory& e) const
171 {
174 }
175
177
183{
184public:
185
188
191
192#if HAVE_SECURITY
193 bool enable_builtin_secure_publications_writer_and_subscriptions_reader;
194
195 bool enable_builtin_secure_subscriptions_writer_and_publications_reader;
196#endif // if HAVE_SECURITY
197
201#if HAVE_SECURITY
202 , enable_builtin_secure_publications_writer_and_subscriptions_reader(true)
203 , enable_builtin_secure_subscriptions_writer_and_publications_reader(true)
204#endif // if HAVE_SECURITY
205 {
206 }
207
209 const SimpleEDPAttributes& b) const
210 {
211 return (this->use_PublicationWriterANDSubscriptionReader == b.use_PublicationWriterANDSubscriptionReader) &&
212#if HAVE_SECURITY
213 (this->enable_builtin_secure_publications_writer_and_subscriptions_reader ==
214 b.enable_builtin_secure_publications_writer_and_subscriptions_reader) &&
215 (this->enable_builtin_secure_subscriptions_writer_and_publications_reader ==
216 b.enable_builtin_secure_subscriptions_writer_and_publications_reader) &&
217#endif // if HAVE_SECURITY
218 (this->use_PublicationReaderANDSubscriptionWriter == b.use_PublicationReaderANDSubscriptionWriter);
219 }
220
221};
222
228{
230 uint32_t count = 5u;
231
233 dds::Duration_t period = { 0, 100000000u };
234
236 const InitialAnnouncementConfig& b) const
237 {
238 return (count == b.count) && (period == b.period);
239 }
240
241};
242
247
249{
250public:
251
254
259
265
271
277
280
283
291 dds::Duration_t discoveryServer_client_syncperiod = { 0, 450 * 1000000}; // 450 milliseconds
292
295
298
299 DiscoverySettings() = default;
300
302 const DiscoverySettings& b) const
303 {
304 return (this->discoveryProtocol == b.discoveryProtocol) &&
305 (this->use_SIMPLE_EndpointDiscoveryProtocol == b.use_SIMPLE_EndpointDiscoveryProtocol) &&
306 (this->use_STATIC_EndpointDiscoveryProtocol == b.use_STATIC_EndpointDiscoveryProtocol) &&
307 (this->discoveryServer_client_syncperiod == b.discoveryServer_client_syncperiod) &&
308 (this->m_PDPfactory == b.m_PDPfactory) &&
309 (this->leaseDuration == b.leaseDuration) &&
310 (this->leaseDuration_announcementperiod == b.leaseDuration_announcementperiod) &&
311 (this->initial_announcements == b.initial_announcements) &&
312 (this->m_simpleEDP == b.m_simpleEDP) &&
313 (this->static_edp_xml_config_ == b.static_edp_xml_config_) &&
314 (this->m_DiscoveryServers == b.m_DiscoveryServers) &&
315 (this->ignoreParticipantFlags == b.ignoreParticipantFlags);
316 }
317
324 const char* str)
325 {
326 static_edp_xml_config_ = str;
327 }
328
334 const char* static_edp_xml_config() const
335 {
336 return static_edp_xml_config_.c_str();
337 }
338
339private:
340
343 std::string static_edp_xml_config_ = "";
344};
345
351{
352public:
353
356
359
362
365
368
371
374
377 MemoryManagementPolicy_t::PREALLOCATED_WITH_REALLOC_MEMORY_MODE;
378
380 uint32_t readerPayloadSize = BUILTIN_DATA_MAX_SIZE;
381
384 MemoryManagementPolicy_t::PREALLOCATED_WITH_REALLOC_MEMORY_MODE;
385
387 uint32_t writerPayloadSize = BUILTIN_DATA_MAX_SIZE;
388
390 uint32_t mutation_tries = 100u;
391
394
396 std::string flow_controller_name = "";
397
398 BuiltinAttributes() = default;
399
400 virtual ~BuiltinAttributes() = default;
401
403 const BuiltinAttributes& b) const
404 {
405 return (this->discovery_config == b.discovery_config) &&
406 (this->use_WriterLivelinessProtocol == b.use_WriterLivelinessProtocol) &&
407 (this->network_configuration == b.network_configuration) &&
408 (this->metatrafficUnicastLocatorList == b.metatrafficUnicastLocatorList) &&
409 (this->metatrafficMulticastLocatorList == b.metatrafficMulticastLocatorList) &&
410 (this->metatraffic_external_unicast_locators == b.metatraffic_external_unicast_locators) &&
411 (this->initialPeersList == b.initialPeersList) &&
412 (this->readerHistoryMemoryPolicy == b.readerHistoryMemoryPolicy) &&
413 (this->readerPayloadSize == b.readerPayloadSize) &&
414 (this->writerHistoryMemoryPolicy == b.writerHistoryMemoryPolicy) &&
415 (this->writerPayloadSize == b.writerPayloadSize) &&
416 (this->mutation_tries == b.mutation_tries) &&
417 (this->flow_controller_name == b.flow_controller_name) &&
418 (this->avoid_builtin_multicast == b.avoid_builtin_multicast);
419 }
420
421};
422
428{
429 using FlowControllerDescriptorList = std::vector<std::shared_ptr<fastdds::rtps::FlowControllerDescriptor>>;
430
431public:
432
434
435 virtual ~RTPSParticipantAttributes() = default;
436
438 const RTPSParticipantAttributes& b) const
439 {
440 return (this->name == b.name) &&
447 (this->netmaskFilter == b.netmaskFilter) &&
448 (this->builtin == b.builtin) &&
449 (this->port == b.port) &&
450 (this->userData == b.userData) &&
451 (this->participantID == b.participantID) &&
452 (this->easy_mode_ip == b.easy_mode_ip) &&
454 (this->properties == b.properties) &&
455 (this->prefix == b.prefix) &&
456 (this->flow_controllers == b.flow_controllers) &&
459#if HAVE_SECURITY
460 (this->security_log_thread == b.security_log_thread) &&
461#endif // if HAVE_SECURITY
465
466 }
467
475 FASTDDS_EXPORTED_API void setup_transports(
478
484
490
495
500
506
511
514
517
518 FASTDDS_EXPORTED_API inline bool ReadguidPrefix(
519 const char* pfx)
520 {
521 return bool(std::istringstream(pfx) >> prefix);
522 }
523
526
529
531 std::vector<octet> userData;
532
534 int32_t participantID = -1;
535
537 std::string easy_mode_ip = "";
538
540 std::vector<std::shared_ptr<fastdds::rtps::TransportDescriptorInterface>> userTransports;
541
544
547
550
552 inline void setName(
553 const char* nam)
554 {
555 name = nam;
556 }
557
559 inline const char* getName() const
560 {
561 return name.c_str();
562 }
563
565 FlowControllerDescriptorList flow_controllers;
566
569
572
575
578
581
582#if HAVE_SECURITY
584 fastdds::rtps::ThreadSettings security_log_thread;
585#endif // if HAVE_SECURITY
586
592
593private:
594
596 fastcdr::string_255 name{"RTPSParticipant"};
597};
598
599} // namespace rtps
600} // namespace fastdds
601} // namespace eprosima
602
603#endif // FASTDDS_RTPS_ATTRIBUTES__RTPSPARTICIPANTATTRIBUTES_HPP
Class BuiltinAttributes, to define the behavior of the RTPSParticipant builtin protocols.
Definition RTPSParticipantAttributes.hpp:351
bool avoid_builtin_multicast
Set to true to avoid multicast traffic on builtin endpoints.
Definition RTPSParticipantAttributes.hpp:393
fastdds::rtps::ExternalLocators metatraffic_external_unicast_locators
The collection of external locators to use for communication on metatraffic topics.
Definition RTPSParticipantAttributes.hpp:370
MemoryManagementPolicy_t writerHistoryMemoryPolicy
Memory policy for builtin writers.
Definition RTPSParticipantAttributes.hpp:383
std::string flow_controller_name
Flow controller name to use for the builtin writers.
Definition RTPSParticipantAttributes.hpp:396
DiscoverySettings discovery_config
Discovery protocol related attributes.
Definition RTPSParticipantAttributes.hpp:355
LocatorList_t initialPeersList
Initial peers.
Definition RTPSParticipantAttributes.hpp:373
bool operator==(const BuiltinAttributes &b) const
Definition RTPSParticipantAttributes.hpp:402
LocatorList_t metatrafficUnicastLocatorList
Metatraffic Unicast Locator List.
Definition RTPSParticipantAttributes.hpp:364
MemoryManagementPolicy_t readerHistoryMemoryPolicy
Memory policy for builtin readers.
Definition RTPSParticipantAttributes.hpp:376
uint32_t readerPayloadSize
Maximum payload size for builtin readers.
Definition RTPSParticipantAttributes.hpp:380
bool use_WriterLivelinessProtocol
Indicates to use the WriterLiveliness protocol.
Definition RTPSParticipantAttributes.hpp:358
uint32_t writerPayloadSize
Maximum payload size for builtin writers.
Definition RTPSParticipantAttributes.hpp:387
LocatorList_t metatrafficMulticastLocatorList
Metatraffic Multicast Locator List.
Definition RTPSParticipantAttributes.hpp:367
uint32_t mutation_tries
Mutation tries if the port is being used.
Definition RTPSParticipantAttributes.hpp:390
NetworkConfigSet_t network_configuration
Network Configuration.
Definition RTPSParticipantAttributes.hpp:361
Class DiscoverySettings, to define the attributes of the several discovery protocols available.
Definition RTPSParticipantAttributes.hpp:249
SimpleEDPAttributes m_simpleEDP
Attributes of the SimpleEDP protocol.
Definition RTPSParticipantAttributes.hpp:282
const char * static_edp_xml_config() const
Get the static endpoint XML configuration.
Definition RTPSParticipantAttributes.hpp:334
ParticipantFilteringFlags ignoreParticipantFlags
Filtering participants out depending on location.
Definition RTPSParticipantAttributes.hpp:297
dds::Duration_t discoveryServer_client_syncperiod
The period for the RTPSParticipant to: send its Discovery Message to its servers check for EDP endpoi...
Definition RTPSParticipantAttributes.hpp:291
InitialAnnouncementConfig initial_announcements
Initial announcements configuration.
Definition RTPSParticipantAttributes.hpp:279
dds::Duration_t leaseDuration
Lease Duration of the RTPSParticipant, indicating how much time remote RTPSParticipants should consid...
Definition RTPSParticipantAttributes.hpp:270
void static_edp_xml_config(const char *str)
Set the static endpoint XML configuration.
Definition RTPSParticipantAttributes.hpp:323
bool operator==(const DiscoverySettings &b) const
Definition RTPSParticipantAttributes.hpp:301
dds::Duration_t leaseDuration_announcementperiod
The period for the RTPSParticipant to send its Discovery Message to all other discovered RTPSParticip...
Definition RTPSParticipantAttributes.hpp:276
bool use_STATIC_EndpointDiscoveryProtocol
If set to true, StaticEDP based on an XML file would be implemented.
Definition RTPSParticipantAttributes.hpp:264
bool use_SIMPLE_EndpointDiscoveryProtocol
If set to true, SimpleEDP would be used.
Definition RTPSParticipantAttributes.hpp:258
PDPFactory m_PDPfactory
function that returns a PDP object (only if EXTERNAL selected)
Definition RTPSParticipantAttributes.hpp:285
eprosima::fastdds::rtps::LocatorList m_DiscoveryServers
Discovery Server initial connections, needed if discoveryProtocol = CLIENT | SUPER_CLIENT | SERVER | ...
Definition RTPSParticipantAttributes.hpp:294
DiscoveryProtocol discoveryProtocol
Chosen discovery protocol.
Definition RTPSParticipantAttributes.hpp:253
Class LocatorList, a Locator vector that doesn't allow duplicates.
Definition LocatorList.hpp:97
Class PortParameters, to define the port parameters and gains related with the RTPS protocol.
Definition PortParameters.hpp:35
Definition PropertyPolicy.hpp:30
std::string easy_mode_ip
IP of the Host where master Server is located (EASY_MODE context).
Definition RTPSParticipantAttributes.hpp:537
LocatorList_t defaultUnicastLocatorList
Default list of Unicast Locators to be used for any Endpoint defined inside this RTPSParticipant in t...
Definition RTPSParticipantAttributes.hpp:483
int32_t participantID
Participant ID.
Definition RTPSParticipantAttributes.hpp:534
uint32_t sendSocketBufferSize
Send socket buffer size for the send resource.
Definition RTPSParticipantAttributes.hpp:505
fastdds::rtps::ExternalLocators default_external_unicast_locators
The collection of external locators to use for communication on user created topics.
Definition RTPSParticipantAttributes.hpp:494
FASTDDS_EXPORTED_API bool ReadguidPrefix(const char *pfx)
Definition RTPSParticipantAttributes.hpp:518
PropertyPolicy properties
Property policies.
Definition RTPSParticipantAttributes.hpp:549
fastdds::rtps::ThreadSettings discovery_server_thread
Thread settings for the discovery server thread.
Definition RTPSParticipantAttributes.hpp:574
FASTDDS_EXPORTED_API void setup_transports(fastdds::rtps::BuiltinTransports transports, const fastdds::rtps::BuiltinTransportsOptions &options=fastdds::rtps::BuiltinTransportsOptions())
Provides a way of easily configuring transport related configuration on certain pre-defined scenarios...
LocatorList_t defaultMulticastLocatorList
Default list of Multicast Locators to be used for any Endpoint defined inside this RTPSParticipant in...
Definition RTPSParticipantAttributes.hpp:489
bool ignore_non_matching_locators
Whether locators that don't match with the announced locators should be kept.
Definition RTPSParticipantAttributes.hpp:499
const char * getName() const
Get the name of the participant.
Definition RTPSParticipantAttributes.hpp:559
std::vector< std::shared_ptr< fastdds::rtps::TransportDescriptorInterface > > userTransports
User defined transports to use alongside or in place of builtins.
Definition RTPSParticipantAttributes.hpp:540
RTPSParticipantAllocationAttributes allocation
Holds allocation limits affecting collections managed by a participant.
Definition RTPSParticipantAttributes.hpp:546
void setName(const char *nam)
Set the name of the participant.
Definition RTPSParticipantAttributes.hpp:552
uint32_t max_msg_size_no_frag
Maximum message size used to avoid fragmentation, set ONLY in LARGE_DATA.
Definition RTPSParticipantAttributes.hpp:591
bool useBuiltinTransports
Set as false to disable the creation of the default transports.
Definition RTPSParticipantAttributes.hpp:543
FlowControllerDescriptorList flow_controllers
Flow controllers.
Definition RTPSParticipantAttributes.hpp:565
fastdds::rtps::ThreadSettings builtin_controllers_sender_thread
Thread settings for the builtin flow controllers sender threads.
Definition RTPSParticipantAttributes.hpp:568
std::vector< octet > userData
User Data of the participant.
Definition RTPSParticipantAttributes.hpp:531
bool operator==(const RTPSParticipantAttributes &b) const
Definition RTPSParticipantAttributes.hpp:437
GuidPrefix_t prefix
Optionally allows user to define the GuidPrefix_t.
Definition RTPSParticipantAttributes.hpp:516
BuiltinAttributes builtin
Builtin parameters.
Definition RTPSParticipantAttributes.hpp:525
uint32_t listenSocketBufferSize
Listen socket buffer for all listen resources.
Definition RTPSParticipantAttributes.hpp:510
fastdds::rtps::ThreadSettings builtin_transports_reception_threads
Thread settings for the builtin transports reception threads.
Definition RTPSParticipantAttributes.hpp:580
fastdds::rtps::ThreadSettings typelookup_service_thread
Thread settings for the builtin TypeLookup service requests and replies threads.
Definition RTPSParticipantAttributes.hpp:577
fastdds::rtps::ThreadSettings timed_events_thread
Thread settings for the timed events thread.
Definition RTPSParticipantAttributes.hpp:571
fastdds::rtps::NetmaskFilterKind netmaskFilter
Netmask filter configuration.
Definition RTPSParticipantAttributes.hpp:513
PortParameters port
Port Parameters.
Definition RTPSParticipantAttributes.hpp:528
Class SimpleEDPAttributes, to define the attributes of the Simple Endpoint Discovery Protocol.
Definition RTPSParticipantAttributes.hpp:183
bool operator==(const SimpleEDPAttributes &b) const
Definition RTPSParticipantAttributes.hpp:208
bool use_PublicationWriterANDSubscriptionReader
Default value true.
Definition RTPSParticipantAttributes.hpp:187
SimpleEDPAttributes()
Definition RTPSParticipantAttributes.hpp:198
bool use_PublicationReaderANDSubscriptionWriter
Default value true.
Definition RTPSParticipantAttributes.hpp:190
Time_t Duration_t
Definition Time_t.hpp:91
Contains the RTPS protocol implementation.
eprosima::fastdds::rtps::LocatorList LocatorList_t
Definition LocatorList.hpp:478
std::ostream & operator<<(std::ostream &output, BuiltinTransports transports)
Definition BuiltinTransports.hpp:118
BuiltinTransports
Defines the kind of transports automatically instantiated upon the creation of a participant.
Definition BuiltinTransports.hpp:106
@ NONE
Definition BuiltinTransports.hpp:107
struct eprosima::fastdds::rtps::PDPFactory PDPFactory
NetmaskFilterKind
Definition NetmaskFilterKind.hpp:31
@ AUTO
Definition NetmaskFilterKind.hpp:33
FASTDDS_EXPORTED_API bool get_server_client_default_guidPrefix(int id, fastdds::rtps::GuidPrefix_t &guid)
Returns the guidPrefix associated to the given server id.
std::map< uint8_t, std::map< uint8_t, std::vector< LocatorWithMask > >, std::greater< uint8_t > > ExternalLocators
A collection of LocatorWithMask grouped by externality and cost.
Definition ExternalLocators.hpp:34
enum eprosima::fastdds::rtps::MemoryManagementPolicy MemoryManagementPolicy_t
Enum MemoryuManagementPolicy_t, indicated the way memory is managed in terms of dealing with CacheCha...
FASTDDS_TODO_BEFORE(4, 0, "Change it to uint8_t (implies also changing [de]serializations)")
Filtering flags when discovering participants.
uint32_t NetworkConfigSet_t
Definition Types.hpp:88
constexpr uint16_t DEFAULT_ROS2_SERVER_PORT
Definition RTPSParticipantAttributes.hpp:141
constexpr uint16_t DEFAULT_TCP_SERVER_PORT
Definition RTPSParticipantAttributes.hpp:143
DiscoveryProtocol
PDP subclass choice.
Definition RTPSParticipantAttributes.hpp:69
@ EXTERNAL
A user defined PDP subclass object must be provided in the attributes that deals with the discovery.
Definition RTPSParticipantAttributes.hpp:81
@ SERVER
The participant will behave as a server concerning discovery operation.
Definition RTPSParticipantAttributes.hpp:88
@ NONE
NO discovery whatsoever would be used.
Definition RTPSParticipantAttributes.hpp:70
@ BACKUP
The participant will behave as a server concerning discovery operation.
Definition RTPSParticipantAttributes.hpp:90
@ SIMPLE
Discovery works according to 'The Real-time Publish-Subscribe Protocol(RTPS) DDS Interoperability Wir...
Definition RTPSParticipantAttributes.hpp:76
@ SUPER_CLIENT
The participant will behave as a client concerning all internal behaviour.
Definition RTPSParticipantAttributes.hpp:92
@ CLIENT
The participant will behave as a client concerning discovery operation.
Definition RTPSParticipantAttributes.hpp:86
ParticipantFilteringFlags
Definition RTPSParticipantAttributes.hpp:148
@ FILTER_DIFFERENT_HOST
Definition RTPSParticipantAttributes.hpp:150
@ NO_FILTER
Definition RTPSParticipantAttributes.hpp:149
@ FILTER_SAME_PROCESS
Definition RTPSParticipantAttributes.hpp:152
@ FILTER_DIFFERENT_PROCESS
Definition RTPSParticipantAttributes.hpp:151
eProsima namespace.
Options for configuring the built-in transports when using LARGE_DATA mode.
Definition BuiltinTransports.hpp:37
Structure GuidPrefix_t, Guid Prefix of GUID_t.
Definition GuidPrefix_t.hpp:37
Struct InitialAnnouncementConfig defines the behavior of the RTPSParticipant initial announcements.
Definition RTPSParticipantAttributes.hpp:228
dds::Duration_t period
Specific period for initial announcements (default 100ms).
Definition RTPSParticipantAttributes.hpp:233
bool operator==(const InitialAnnouncementConfig &b) const
Definition RTPSParticipantAttributes.hpp:235
uint32_t count
Number of initial announcements with specific period (default 5).
Definition RTPSParticipantAttributes.hpp:230
Definition RTPSParticipantAttributes.hpp:162
bool operator==(const struct PDPFactory &e) const
Definition RTPSParticipantAttributes.hpp:169
void(* ReleasePDPInstance)(PDP *)
Definition RTPSParticipantAttributes.hpp:166
PDP *(* CreatePDPInstance)(BuiltinProtocols *)
Definition RTPSParticipantAttributes.hpp:164
Struct to define participant types to set participant type parameter property.
Definition RTPSParticipantAttributes.hpp:50
static constexpr const char * SIMPLE
Definition RTPSParticipantAttributes.hpp:51
static constexpr const char * CLIENT
Definition RTPSParticipantAttributes.hpp:53
static constexpr const char * EXTERNAL
Definition RTPSParticipantAttributes.hpp:57
static constexpr const char * UNKNOWN
Definition RTPSParticipantAttributes.hpp:58
static constexpr const char * SUPER_CLIENT
Definition RTPSParticipantAttributes.hpp:54
static constexpr const char * SERVER
Definition RTPSParticipantAttributes.hpp:52
static constexpr const char * NONE
Definition RTPSParticipantAttributes.hpp:56
static constexpr const char * BACKUP
Definition RTPSParticipantAttributes.hpp:55
Holds allocation limits affecting collections managed by a participant.
Definition RTPSParticipantAllocationAttributes.hpp:129
Struct ThreadSettings to specify various thread settings.
Definition ThreadSettings.hpp:37