Calling a ros service from several nodes at the same time?
Hello,
I have a service that simply performs a task and then returns (i.e. it is not storing any data in global variables or retaining any type of state)....
The question is: Can I call the service from several nodes at the same time without having to worry about mutual exclusion issues? I.e. each time the service is called does it create a separate "instance" for each caller?
Thanks for the help!