You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have Published through c# on a certain port, and I have verified by subscribing through C#. But when I am trying to subscribe through julia (0.3.11) on windows, using the below mentioned code :
It just hangs, am I missing something? I am not very sure if this is an issue or I am missing something. Documentation does not have examples for PUB/SUB.
The text was updated successfully, but these errors were encountered:
ctx =Context()
p =Socket(ctx, PUB)
ZMQ.bind(p, "tcp://127.0.0.1:50001")
s =Socket(ctx, SUB)
ZMQ.subscribe(s)
ZMQ.connect(s, "tcp://127.0.0.1:50001")
ZMQ.send(p, Message("test message"))
msg =bytestring(ZMQ.recv(s))
(At least from the REPL; I have some problem running in this IJulia, maybe because IJulia is already using ZMQ? I'm not sure why there would be an interaction.)
I have Published through c# on a certain port, and I have verified by subscribing through C#. But when I am trying to subscribe through julia (0.3.11) on windows, using the below mentioned code :
It just hangs, am I missing something? I am not very sure if this is an issue or I am missing something. Documentation does not have examples for PUB/SUB.
The text was updated successfully, but these errors were encountered: