ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

All threading is local to processes.

All callbacks can be associated with a specific callback queue. All callbacks go into the default queue if not specified. A NodeHandle can have a custom callback queue associated with it, or specific callback registrations.

If you have a single thread servicing a callback queue. All will be serial.

Any specific callback will only be called after the last instance has finished, regardless of how many threads there are in the queue.