I am going through the examples on the ZeroMQ website and all the Java examples don't work for the jzmq library. I think they work with the other Java implementation but the project I am working on is using jzmq. Are there examples anywhere for JZMQ?
Specifically, how do you create a Poller? The example has:
context.createPoller(2);
There is a method on the context that is depreciated:
context.getContext().poller();
And says to use the constructor but the ZMQ.Poller constructor is protected.
How are you supposed to construct one?