anyone knows if the java bindings "jzmq" for ZeroMQ work with ZeroMQ version 3.x.x ? There is NOWEHERE official information about that. Anyone an idea?
Does "jzmq" support ZeroMQ Version 3?
591 Views Asked by AlexLiesenfeld At
2
There are 2 best solutions below
0

I didn't have any problems when using the Mule & Apache CXF ZeroMQ transports with ZeroMQ 3.2.2 and jzmq 2.1.0. Having said that, I don't know if jzmq, underneath, is calling methods deprecated in ZeroMQ 3.2.2.
Indeed, not easy to find. However, browsing around in the jzmq code, it seems that 3.0 (and possibly higher) versions are supported. Have a look at the following java file, it contains notions about 3.0 including various checks for current zmq version and appropriate handling (e.g. supporting newer zmq 3.0+ functionality):
https://github.com/zeromq/jzmq/blob/master/src/org/zeromq/ZMQ.java
For example (line 813 per 2013-01-31):