Class CallbackGroup
Defined in File callback_group.hpp
Class Documentation
-
class CallbackGroup
Public Functions
-
explicit CallbackGroup(CallbackGroupType group_type, bool automatically_add_to_executor_with_node = true)
Constructor for CallbackGroup.
Callback Groups have a type, either ‘Mutually Exclusive’ or ‘Reentrant’ and when creating one the type must be specified.
Callbacks in Reentrant Callback Groups must be able to:
run at the same time as themselves (reentrant)
run at the same time as other callbacks in their group
run at the same time as other callbacks in other groups
Callbacks in Mutually Exclusive Callback Groups:
will not be run multiple times simultaneously (non-reentrant)
will not be run at the same time as other callbacks in their group
but must run at the same time as callbacks in other groups
Additionally, callback groups have a property which determines whether or not they are added to an executor with their associated node automatically. When creating a callback group the automatically_add_to_executor_with_node argument determines this behavior, and if true it will cause the newly created callback group to be added to an executor with the node when the Executor::add_node method is used. If false, this callback group will not be added automatically and would have to be added to an executor manually using the Executor::add_callback_group method.
Whether the node was added to the executor before creating the callback group, or after, is irrelevant; the callback group will be automatically added to the executor in either case.
- Parameters:
group_type – [in] The type of the callback group.
automatically_add_to_executor_with_node – [in] A boolean that determines whether a callback group is automatically added to an executor with the node with which it is associated.
-
~CallbackGroup()
Default destructor.
-
std::atomic_bool &can_be_taken_from()
-
const CallbackGroupType &type() const
-
std::atomic_bool &get_associated_with_executor_atomic()
Return a reference to the ‘associated with executor’ atomic boolean.
When a callback group is added to an executor this boolean is checked to ensure it has not already been added to another executor. If it has not been, then this boolean is set to true to indicate it is now associated with an executor.
When the callback group is removed from the executor, this atomic boolean is set back to false.
- Returns:
the ‘associated with executor’ atomic boolean
-
bool automatically_add_to_executor_with_node() const
Return true if this callback group should be automatically added to an executor by the node.
- Returns:
boolean true if this callback group should be automatically added to an executor when the associated node is added, otherwise false.
Defer creating the notify guard condition and return it.
-
void trigger_notify_guard_condition()
Trigger the notify guard condition.
Protected Functions
Protected Attributes
-
CallbackGroupType type_
-
mutable std::mutex mutex_
-
std::atomic_bool associated_with_executor_
-
std::vector<rclcpp::SubscriptionBase::WeakPtr> subscription_ptrs_
-
std::vector<rclcpp::ServiceBase::WeakPtr> service_ptrs_
-
std::vector<rclcpp::ClientBase::WeakPtr> client_ptrs_
-
std::atomic_bool can_be_taken_from_
-
const bool automatically_add_to_executor_with_node_
-
std::shared_ptr<rclcpp::GuardCondition> notify_guard_condition_ = nullptr
-
std::recursive_mutex notify_guard_condition_mutex_
Friends
- friend class rclcpp::node_interfaces::NodeServices
- friend class rclcpp::node_interfaces::NodeTimers
- friend class rclcpp::node_interfaces::NodeTopics
- friend class rclcpp::node_interfaces::NodeWaitables
-
explicit CallbackGroup(CallbackGroupType group_type, bool automatically_add_to_executor_with_node = true)