-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add SubListener::on_sample_lost empty stub. * Process data inside listener callback. * Add RMW_EVENT_MESSAGE_LOST to hasEvent and takeNextEvent. * Add SubListener::on_requested_incompatible_qos empty stub. * Process data inside listener callback. * Add RMW_EVENT_REQUESTED_QOS_INCOMPATIBLE to hasEvent and takeNextEvent. * Translate policy id. * Add PubListener::on_offered_incompatible_qos empty stub. * Process data inside listener callback. * Add RMW_EVENT_OFFERED_QOS_INCOMPATIBLE to hasEvent and takeNextEvent. * Add incompatible qos events to supported list. * Initialize added atomic_bool fields. Signed-off-by: Miguel Company <[email protected]> Co-authored-by: Chris Lalancette <[email protected]>
- Loading branch information
1 parent
33c54b0
commit 66926c7
Showing
6 changed files
with
192 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2022 Open Source Robotics Foundation, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef EVENT_HELPERS_HPP_ | ||
#define EVENT_HELPERS_HPP_ | ||
|
||
#include "fastdds/dds/core/policy/QosPolicies.hpp" | ||
|
||
#include "rmw/qos_policy_kind.h" | ||
|
||
namespace rmw_fastrtps_shared_cpp | ||
{ | ||
namespace internal | ||
{ | ||
|
||
rmw_qos_policy_kind_t dds_qos_policy_to_rmw_qos_policy( | ||
eprosima::fastdds::dds::QosPolicyId_t policy_id); | ||
|
||
} // namespace internal | ||
} // namespace rmw_fastrtps_shared_cpp | ||
|
||
#endif // EVENT_HELPERS_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters