Hi,
In a distributed system with the following data flow:
- The client sends a message for a random node in the distributed system.
- The node checks if the operation can be performed by him. If not, sends the message to other node. And the process follows until the correct node.
So the system has the following flow:
client -> nodeX -> nodeY -> nodeZ
If I want to send an OK signal to the client (from nodeX), will the process block using ZeroMQ?
Thanks!