Message order with multiple publishers to same latched topic
Scenario:
- a node A publishes "hello" to a latched topic /x with queue size 1
- then a node B publishes "world" to the same latched topic /x with queue size 1
Because of the latched topics, I assume a late subscriber will receive both "hello" and then "world", correct?
But is the order guaranteed, will he always receive "hello", then "world" ?