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 am trying to communicate over IPC using a JZMQ subscriber and PyZMQ publisher but messages are received in the JZMQ side.
I have checked my publisher using a Python subscriber and did it work.
Any ideas? Is that perhaps not supported?
The JZMQ code:
ZContext context = new ZContext();
Socket subscriber = context.createSocket(SocketType.SUB);
subscriber.connect("ipc://001);
subscriber.subscribe("".getBytes());
byte[] data = subscriber.recv();
Hi,
I am trying to communicate over IPC using a JZMQ subscriber and PyZMQ publisher but messages are received in the JZMQ side.
I have checked my publisher using a Python subscriber and did it work.
Any ideas? Is that perhaps not supported?
The JZMQ code:
The PyZMQ code:
The text was updated successfully, but these errors were encountered: