Open PierrePeng opened 2 years ago
- Can I publish a topic from program A and receive it both from program B and program C?
Yes if those programs share the same memory and address space. SHM in XRCE is implemented as a naive approach that does not take into account process memory protection.
- Should I create sessions/streams/entities/publishers/subscribers for each topic that I want to publish/subscribe to in a single program?
One session can have multiple streams, and those streams and the session can handle multiple pubs, subs, and topics.
@pablogs9 Thanks for your reply!
One session can have multiple streams, and those streams and the session can handle multiple pubs, subs, and topics.
Are there any tutorials or examples about that?
You have all the available examples here: https://github.com/eProsima/Micro-XRCE-DDS-Client/tree/master/examples
Hi,
I am confused about the share memory feature On Nuttx.
Thanks!