Go to the documentation of this file.
12 subscriptions.goalReachedCallbacks.push_back(callback);
18 subscriptions.waypointReachedCallbacks.push_back(callback);
25 subscriptions.safetyThrottlingTriggeredCallbacks.push_back(callback);
31 subscriptions.safetyStopTriggeredCallbacks.push_back(callback);
37 subscriptions.userAbortTriggeredCallbacks.push_back(callback);
43 subscriptions.internalErrorCallbacks.push_back(callback);
47 SimpleEventHandler::SimpleEventHandler::onMovementStarted(
50 subscriptions.movementStartedCallbacks.push_back(callback);
56 subscriptions.globalPlanningFailedCallbacks.push_back(callback);
62 subscriptions.localPlanningFailedCallbacks.push_back(callback);
68 subscriptions.globalTrajectoryUpdatedCallbacks.push_back(callback);
74 subscriptions.localTrajectoryUpdatedCallbacks.push_back(callback);
80 for (
const auto& callback : subscriptions.goalReachedCallbacks)
89 for (
const auto& callback : subscriptions.waypointReachedCallbacks)
98 for (
const auto& callback : subscriptions.safetyThrottlingTriggeredCallbacks)
107 for (
const auto& callback : subscriptions.safetyStopTriggeredCallbacks)
116 for (
const auto& callback : subscriptions.userAbortTriggeredCallbacks)
125 for (
const auto& callback : subscriptions.internalErrorCallbacks)
134 for (
const auto& callback : subscriptions.globalTrajectoryUpdatedCallbacks)
143 for (
const auto& callback : subscriptions.localTrajectoryUpdatedCallbacks)
162 for (
const auto& callback : subscriptions.globalPlanningFailedCallbacks)
171 for (
const auto& callback : subscriptions.localPlanningFailedCallbacks)
180 for (
const auto& callback : subscriptions.movementStartedCallbacks)
void safetyStopTriggered(const core::SafetyStopTriggeredEvent &event) override
Will be called whenever a safety stop is triggered.
std::function< void(const core::WaypointReachedEvent &)> OnWaypointReachedCallback
std::function< void(const core::GlobalPlanningFailedEvent &)> GlobalPlanningFailedCallback
void movementStarted(const core::MovementStartedEvent &event) override
void safetyThrottlingTriggered(const core::SafetyThrottlingTriggeredEvent &event) override
Will be called whenever safety throttling is triggered to a certain degree (configurable).
Event describing the occurance of an internal unhandled error.
Event desciribing that a significant safety throttling factor was reached.
void onSafetyThrottlingTriggered(const OnSafetyThrottlingTriggeredCallback &callback) override
void globalPlanningFailed(const core::GlobalPlanningFailedEvent &event) override
void internalError(const core::InternalErrorEvent &event) override
Will be called whenever an internal error occurs.
This file is part of ArmarX.
void localTrajectoryUpdated(const core::LocalTrajectoryUpdatedEvent &event) override
std::function< void(const core::LocalPlanningFailedEvent &)> LocalPlanningFailedCallback
std::function< void(const core::GlobalTrajectoryUpdatedEvent &)> GlobalTrajectoryUpdatedCallback
void localPlanningFailed(const core::LocalPlanningFailedEvent &event) override
void onInternalError(const OnInternalErrorCallback &callback) override
void userAbortTriggered(const core::UserAbortTriggeredEvent &event) override
Will be called whenever the user aborts the current navigation.
void onGoalReached(const OnGoalReachedCallback &callback) override
Event describing that for security reasons, the robot was stopped completely.
std::function< void(const core::UserAbortTriggeredEvent &)> OnUserAbortTriggeredCallback
std::function< void(const core::SafetyThrottlingTriggeredEvent &)> OnSafetyThrottlingTriggeredCallback
void onWaypointReached(const OnWaypointReachedCallback &callback) override
Event describing that the user aborted the current execution.
std::function< void(const core::LocalTrajectoryUpdatedEvent &)> LocalTrajectoryUpdatedCallback
Event describing that the local trajectory was updated.
void onLocalTrajectoryUpdated(const LocalTrajectoryUpdatedCallback &callback) override
Event describing that the targeted goal was successfully reached.
void onUserAbortTriggered(const OnUserAbortTriggeredCallback &callback) override
void onGlobalPlanningFailed(const GlobalPlanningFailedCallback &callback) override
void onSafetyStopTriggered(const OnSafetyStopTriggeredCallback &callback) override
void goalReached(const core::GoalReachedEvent &event) override
Will be called whenever the navigator reached the goal.
std::function< void(const core::MovementStartedEvent &)> OnMovementStartedCallback
Event describing that the global trajectory was updated.
void waypointReached(const core::WaypointReachedEvent &event) override
Will be called whenever the navigator reached a user-defined waypoint.
void globalTrajectoryUpdated(const core::GlobalTrajectoryUpdatedEvent &event) override
Event describing that a user-defined waypoint was successfully reached.
std::function< void(const core::InternalErrorEvent &)> OnInternalErrorCallback
std::function< void(const core::SafetyStopTriggeredEvent &)> OnSafetyStopTriggeredCallback
void onLocalPlanningFailed(const LocalPlanningFailedCallback &callback) override
std::function< void(const core::GoalReachedEvent &)> OnGoalReachedCallback
void onGlobalTrajectoryUpdated(const GlobalTrajectoryUpdatedCallback &callback) override