Skip to content
Snippets Groups Projects
Commit 58779ffb authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add abortSkill()

parent a43cb643
No related branches found
No related tags found
No related merge requests found
......@@ -43,5 +43,12 @@ namespace armarx
auto future = manager->begin_executeSkill(req);
return future;
}
void SkillProxy::abortSkill(const std::string& executorName)
{
// TODO: This will be used in the future, do not remove it!
(void) executorName;
manager->abortSkill(skillId.providerName, skillId.skillName);
}
}
}
......@@ -17,6 +17,8 @@ namespace armarx
TerminatedSkillStatusUpdate executeFullSkill(const std::string& executorName, const aron::data::DictPtr& params = nullptr);
IceInternal::Handle<Ice::AsyncResult> begin_executeFullSkill(const std::string& executorName, const aron::data::DictPtr& params = nullptr);
void abortSkill(const std::string& executorName);
private:
const manager::dti::SkillManagerInterfacePrx& manager;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment