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

hongkedavid's profile - activity

2019-03-06 10:03:13 -0500 received badge  Famous Question (source)
2018-06-26 11:24:06 -0500 commented answer Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

Got it. Thanks very much for your detailed explanation!

2018-06-26 11:23:19 -0500 commented question Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

Yes, "a same topic M" means that the name and type of topic are same.

2018-06-26 11:23:13 -0500 commented question Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

Yes, "a same topic M" means that the name and type of topic is same.

2018-06-26 11:22:32 -0500 marked best answer Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

Suppose I have two publishers P1 and P2 that publish a same topic M, which is received by two other subscribers S1 and S2, is there a way to ensure that both subscribers will receive M messages in a same order as published from P1 and P2? For example, if P1 publishes a M message and after some time P2 publishes another M message, is it possible to guarantee that both S1 and S2 will receive the M message from P1 and then the one from P2? My understanding is that this can be generally hard to ensure in a message-passing based distributed system. Thanks for any answering or clarification!

2018-06-26 11:22:32 -0500 received badge  Scholar (source)
2018-06-23 12:03:13 -0500 received badge  Notable Question (source)
2018-06-22 13:52:26 -0500 commented question Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

I am a PhD student working on autonomous vehicle (AV) security. I used this example to simplify my question for ease of

2018-06-22 13:52:08 -0500 commented question Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

I am a PhD student working on autonomous vehicle (AV) security. I simplified my question for ease of understanding. I am

2018-06-22 12:28:08 -0500 received badge  Popular Question (source)
2018-06-22 11:34:21 -0500 commented question Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

I am a PhD student working on autonomous vehicle (AV) security. I simplified my question to make it easy for understoodi

2018-06-22 03:04:42 -0500 asked a question Can we ensure messages subscribing order the same as they are published in ROS given multiple publishers and subscribers on a same topic?

Can we ensure messages subscribing order the same as they are published in ROS given multiple publishers and subscribers

2018-06-22 03:04:41 -0500 asked a question Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic?

Can we ensure subscribing order same as publishing order in ROS given multiple publishers on a same topic? Suppose I hav