Trying to send a one-way heartbeat message in ZMQ. Could anyone point me in the right direction? I am using libzmq and cppzmq.
Asked
Active
Viewed 101 times
1
-
Sounds a lot like https://stackoverflow.com/questions/43876068/zmq-pattern-for-requests-without-replies – Nov 03 '21 at 23:31
1 Answers
0
Q : How to send a one-way heartbeat message in ZMQ?
A :
one can simply aSocket.send( "" );
as a one-way, app-controlled, "soft"-heartbeat signal, ZeroMQ delivers it, so your remote-side application code can react accordingly to any such delivery

user3666197
- 1
- 6
- 50
- 92