Skip to content

Commit

Permalink
timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiju Yamada committed Feb 8, 2024
1 parent 82d5716 commit 8b62351
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/mujincontrollerclient/binpickingtask.h
Original file line number Diff line number Diff line change
Expand Up @@ -539,16 +539,16 @@ class MUJINCLIENT_API BinPickingTaskResource : public TaskResource
/// \param timeout timeout of communication
virtual void Release(const std::string& targetname, const std::string& robotname = "", const std::string& toolname = "", const double timeout = 5);

/// \brief enables object
/// \param objectName name of the target to enable
/// \param state whether to enable
/// \brief manipulates enabled state of object
/// \param objectName name of the object to modify enabled state of.
/// \param state whether to enable (true) or disable (false) link
/// \param timeout timeout of communication
virtual void EnableObject(const std::string& objectName, bool state, const double timeout = 5);

/// \brief enables object link
/// \param objectName name of the target to enable
/// \param linkName link name of the target to enable
/// \param state whether to enable
/// \brief manipulates enabled state of link
/// \param objectName name of the object link belongs to
/// \param linkName name of the link to modify enabled state of.
/// \param state whether to enable (true) or disable (false) link.
/// \param timeout timeout of communication
virtual void EnableLink(const std::string& objectName, const std::string& linkName, bool state, const double timeout = 5);

Expand Down

0 comments on commit 8b62351

Please sign in to comment.