Fast DDS  Version 3.6.1.0
Fast DDS
RTPSReliableReaderQos.hpp
1 // Copyright 2025 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 
19 #ifndef FASTDDS_DDS_CORE_POLICY__RTPSRELIABLEREADERQOS_HPP
20 #define FASTDDS_DDS_CORE_POLICY__RTPSRELIABLEREADERQOS_HPP
21 
22 #include <fastdds/dds/core/policy/QosPolicies.hpp>
23 #include <fastdds/rtps/attributes/ReaderAttributes.hpp>
24 
25 namespace eprosima {
26 namespace fastdds {
27 namespace dds {
28 
31 {
32 public:
33 
37  FASTDDS_EXPORTED_API RTPSReliableReaderQos()
38  {
39  }
40 
44  virtual FASTDDS_EXPORTED_API ~RTPSReliableReaderQos() = default;
45 
47  const RTPSReliableReaderQos& b) const
48  {
49  return (this->times == b.times) &&
51  }
52 
53  inline void clear()
54  {
55  *this = RTPSReliableReaderQos();
56  }
57 
62 
67 };
68 
69 } //namespace dds
70 } //namespace fastdds
71 } //namespace eprosima
72 
73 #endif // FASTDDS_DDS_CORE_POLICY__RTPSRELIABLEREADERQOS_HPP
Class DisablePositiveACKsQosPolicy to disable sending of positive ACKs.
Definition: QosPolicies.hpp:2222
Qos Policy to configure the DisablePositiveACKsQos and the reader attributes.
Definition: RTPSReliableReaderQos.hpp:31
bool operator==(const RTPSReliableReaderQos &b) const
Definition: RTPSReliableReaderQos.hpp:46
FASTDDS_EXPORTED_API RTPSReliableReaderQos()
Constructor.
Definition: RTPSReliableReaderQos.hpp:37
DisablePositiveACKsQosPolicy disable_positive_acks
Control the sending of positive ACKs.
Definition: RTPSReliableReaderQos.hpp:66
virtual FASTDDS_EXPORTED_API ~RTPSReliableReaderQos()=default
Destructor.
void clear()
Definition: RTPSReliableReaderQos.hpp:53
fastdds::rtps::ReaderTimes times
Times associated with the Reliable Readers events.
Definition: RTPSReliableReaderQos.hpp:61
Class ReaderTimes, defining the times associated with the Reliable Readers events.
Definition: ReaderAttributes.hpp:38
Definition: DomainParticipant.hpp:46