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:47 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).
1#include<bondcpp/bond.h> 2 3std::stringid = generateUniqueId(); 4// Sends id to B using a service or action 5bond::Bondbond("example_bond_topic", id); 6bond.start(); 7if (!bond.waitUntilFormed(ros::Duration(1.0))) 8{ 9ROS_ERROR("ERROR!"); 10returnfalse; 11} 12// ... do things with B ... 13bond.waitUntilBroken(ros::Duration(-1.0)); 14printf("B has broken the bond\n");
1#include<bondcpp/bond.h> 2 3// Receives id from A using a service or action 4bond::Bondbond("example_bond_topic", id); 5bond.start(); 6// ... do things ... 7bond.breakBond();