diamondback:Only showing information from the released package extracted on Unknown. No API documentation available. Please see this page for information on how to submit your repository to our index.
electric:Documentation generated on March 01, 2013 at 02:15 PM
fuerte:Documentation generated on August 15, 2013 at 10:10 AM
groovy:Documentation generated on October 05, 2014 at 10:32 PM
hydro:Documentation generated on August 28, 2015 at 10:10 AM (doc job).
indigo:Documentation generated on June 07, 2019 at 04:29 AM (doc job).
jade:Documentation generated on August 17, 2017 at 10:58 AM (doc job).
kinetic:Documentation generated on September 02, 2020 at 03:38 AM (doc job).
lunar:Documentation generated on March 20, 2019 at 03:48 PM (doc job).
melodic:Documentation generated on March 01, 2022 at 05:55 AM (doc job).
noetic:Documentation generated on March 02, 2022 at 07:51 AM (doc job).
1frombondpyimportbondpy 2 3id = generate_unique_id() 4# Sends id to B using an action or a service 5bond = bondpy.Bond("example_bond_topic", id) 6bond.start() 7ifnotbond.wait_until_formed(rospy.Duration(1.0)): 8raiseException('Bond could not be formed') 9# ... do things with B ... 10bond.wait_until_broken() 11print"B has broken the bond"
1frombondpyimportbondpy 2 3# Receives id from A using a service or an action 4bond = bondpy.Bond("example_bond_topic", id) 5bond.start() 6# ... do things ... 7bond.break_bond()