Skip to content

Commit 2259a67

Browse files
author
iRobot ROS
authored
Merge pull request #25 from mauropasse/mauro-irobot/add-events-executor
Rename ExecutorEventCallback -> EventsExecutorCallback
2 parents 43c313f + 41cc6c0 commit 2259a67

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

rclcpp/include/rclcpp/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class ClientBase
160160
void
161161
set_events_executor_callback(
162162
const rclcpp::executors::EventsExecutor * executor,
163-
ExecutorEventCallback executor_callback) const;
163+
EventsExecutorCallback executor_callback) const;
164164

165165
RCLCPP_PUBLIC
166166
void

rclcpp/include/rclcpp/executors/events_executor_notify_waitable.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class EventsExecutorNotifyWaitable final : public EventWaitable
6464
void
6565
set_events_executor_callback(
6666
const rclcpp::executors::EventsExecutor * executor,
67-
ExecutorEventCallback executor_callback) const override
67+
EventsExecutorCallback executor_callback) const override
6868
{
6969
for (auto gc : notify_guard_conditions_) {
7070
rcl_ret_t ret = rcl_guard_condition_set_events_executor_callback(

rclcpp/include/rclcpp/experimental/subscription_intra_process_base.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class SubscriptionIntraProcessBase : public rclcpp::Waitable
7474
void
7575
set_events_executor_callback(
7676
const rclcpp::executors::EventsExecutor * executor,
77-
ExecutorEventCallback executor_callback) const override;
77+
EventsExecutorCallback executor_callback) const override;
7878

7979
protected:
8080
std::recursive_mutex reentrant_mutex_;

rclcpp/include/rclcpp/qos_event.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class QOSEventHandlerBase : public Waitable
110110
void
111111
set_events_executor_callback(
112112
const rclcpp::executors::EventsExecutor * executor,
113-
ExecutorEventCallback executor_callback) const override;
113+
EventsExecutorCallback executor_callback) const override;
114114

115115
protected:
116116
rcl_event_t event_handle_;

rclcpp/include/rclcpp/service.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class ServiceBase
130130
void
131131
set_events_executor_callback(
132132
const rclcpp::executors::EventsExecutor * executor,
133-
ExecutorEventCallback executor_callback) const;
133+
EventsExecutorCallback executor_callback) const;
134134

135135
RCLCPP_PUBLIC
136136
void

rclcpp/include/rclcpp/subscription_base.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ class SubscriptionBase : public std::enable_shared_from_this<SubscriptionBase>
273273
void
274274
set_events_executor_callback(
275275
const rclcpp::executors::EventsExecutor * executor,
276-
ExecutorEventCallback executor_callback) const;
276+
EventsExecutorCallback executor_callback) const;
277277

278278
RCLCPP_PUBLIC
279279
void

rclcpp/include/rclcpp/waitable.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class Waitable
176176
void
177177
set_events_executor_callback(
178178
const rclcpp::executors::EventsExecutor * executor,
179-
ExecutorEventCallback executor_callback) const;
179+
EventsExecutorCallback executor_callback) const;
180180

181181
RCLCPP_PUBLIC
182182
void

rclcpp/src/rclcpp/client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ ClientBase::exchange_in_use_by_wait_set_state(bool in_use_state)
205205
void
206206
ClientBase::set_events_executor_callback(
207207
const rclcpp::executors::EventsExecutor * executor,
208-
ExecutorEventCallback executor_callback) const
208+
EventsExecutorCallback executor_callback) const
209209
{
210210
rcl_ret_t ret = rcl_client_set_events_executor_callback(
211211
executor,

rclcpp/src/rclcpp/qos_event.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ QOSEventHandlerBase::is_ready(rcl_wait_set_t * wait_set)
7575
void
7676
QOSEventHandlerBase::set_events_executor_callback(
7777
const rclcpp::executors::EventsExecutor * executor,
78-
ExecutorEventCallback executor_callback) const
78+
EventsExecutorCallback executor_callback) const
7979
{
8080
rcl_ret_t ret = rcl_event_set_events_executor_callback(
8181
executor,

rclcpp/src/rclcpp/service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ ServiceBase::exchange_in_use_by_wait_set_state(bool in_use_state)
9292
void
9393
ServiceBase::set_events_executor_callback(
9494
const rclcpp::executors::EventsExecutor * executor,
95-
ExecutorEventCallback executor_callback) const
95+
EventsExecutorCallback executor_callback) const
9696
{
9797
rcl_ret_t ret = rcl_service_set_events_executor_callback(
9898
executor,

0 commit comments

Comments
 (0)