消息队列
发送消息过快时,来不及处理,回调函数会存放在消息队列当中
单话题
显而易见,只存在一个消息队列
多话题
默认情况下,所有的回调函数共享同一个全局消息队列
By default, all callbacks get assigned into that global queue, which is then processed by
ros::spin()
or one of the alternatives.
ros::spin()
不断的轮询回调函数队列,有就立马处理,没有就阻塞
ros::spinOnce()
每执行一次就执行回调函数队列中所有的消息队列,然后继续向下执行,不阻塞