Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e482d8e
Refs #23923: Take mutex in getter and env file callback
juanlofer-eprosima Nov 6, 2025
a9529de
Refs #23923: Only update mutable attributes
juanlofer-eprosima Nov 7, 2025
2f0beb8
Refs #23923: Copy attributes in getter
juanlofer-eprosima Nov 7, 2025
4443cc9
Refs #23923: Undo copy attributes
juanlofer-eprosima Nov 11, 2025
a6415e6
Refs #23923: Avoid calling get_attributes in SecurityManager constructor
juanlofer-eprosima Nov 12, 2025
e1c7e04
Refs #23923: Copy attributes
juanlofer-eprosima Nov 12, 2025
758e229
Refs #23923: Protect missing cases
cferreiragonz Apr 16, 2026
36e62dc
Refs #23923: Create new method to avoid API break
cferreiragonz Apr 16, 2026
186a3f3
Refs #23923: Doxygen & TODO in next major
cferreiragonz Apr 16, 2026
bcddf45
Refs #23923: Copy method in RTPSParticipant
cferreiragonz Apr 17, 2026
c9c7ca6
Refs #23923: Mock and tests changes
cferreiragonz Apr 17, 2026
a192aa1
Refs #23923: Revision
cferreiragonz Apr 20, 2026
a56e8dd
Refs #23923: Add missing mutable attribute
cferreiragonz Apr 24, 2026
b1f98a1
Refs #23923: Create const copy
cferreiragonz Apr 24, 2026
9e0a882
Refs #23923: Uncrustify
cferreiragonz Apr 27, 2026
5cec6ff
Refs #23923: Spelling
cferreiragonz Apr 27, 2026
79fcb59
Refs #23923: Split const and mutable RTPSParticipantAttributes
cferreiragonz Apr 27, 2026
926c9e6
Refs #23923: Review - Fix Mutable & Constant attributes
cferreiragonz Apr 28, 2026
e3e065f
Refs #23923: Review - Apply methods and composition of BuiltinAttributes
cferreiragonz Apr 28, 2026
ba66dbb
Refs #23923: Review - Update Tests
cferreiragonz Apr 28, 2026
8cc52cd
Refs #23923: Review - Add ConstantDiscoverySettings
cferreiragonz Apr 28, 2026
36370f7
Refs #23923: Solve using statement visibility
cferreiragonz Apr 28, 2026
e157009
Refs #23923: Uncrustify
cferreiragonz Apr 28, 2026
27a8452
Refs #23923: Store constant attributes set at 'setup_' methods
cferreiragonz Apr 29, 2026
82261ce
Refs #23923: Init const attributes and update later
cferreiragonz Apr 30, 2026
7434224
Refs #23923: Review - Improve doxygen
cferreiragonz May 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/fastdds/dds/publisher/DataWriter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ class DataWriter : public DomainEntity
*
* @param [out] subscription_data subscription data struct
* @param subscription_handle InstanceHandle_t of the subscription
* @return RETCODE_OK if successfull, RETCODE_BAD_PARAMETER otherwise
* @return RETCODE_OK if successful, RETCODE_BAD_PARAMETER otherwise
*/
FASTDDS_EXPORTED_API ReturnCode_t get_matched_subscription_data(
SubscriptionBuiltinTopicData& subscription_data,
Expand All @@ -495,7 +495,7 @@ class DataWriter : public DomainEntity
* @brief Fills the given vector with the InstanceHandle_t of matched DataReaders
*
* @param [out] subscription_handles Vector where the InstanceHandle_t are returned
* @return RETCODE_OK if successfull, RETCODE_ERROR otherwise
* @return RETCODE_OK if successful, RETCODE_ERROR otherwise
*/
FASTDDS_EXPORTED_API ReturnCode_t get_matched_subscriptions(
std::vector<InstanceHandle_t>& subscription_handles) const;
Expand Down
Loading
Loading