15 #include "rclcpp/executor_options.hpp"
26 ExecutorOptions::ExecutorOptions()
27 : memory_strategy(
rclcpp::memory_strategies::create_default_strategy()),
28 context(
rclcpp::contexts::get_global_default_context()),
33 ExecutorOptions::~ExecutorOptions()
47 this->memory_strategy = other.memory_strategy;
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.