15 #include "rclcpp/executor_options.hpp"
17 #include "rclcpp/contexts/default_context.hpp"
28 ExecutorOptions::ExecutorOptions()
29 : context(
rclcpp::contexts::get_global_default_context()),
34 ExecutorOptions::~ExecutorOptions()
48 this->context = other.context;
49 this->max_conditions = other.max_conditions;
50 if (
nullptr != other.impl_) {
51 this->impl_ = std::make_unique<ExecutorOptionsImplementation>(*other.impl_);
Versions of rosidl_typesupport_cpp::get_message_type_support_handle that handle adapted types.
Options to be passed to the executor constructor.