views:

276

answers:

1

I am trying to use ZeroMQ's pub sub messaging, but the client side requires the code to be all Java. I understand that ZeroMQ has a Java binding but that still relies on a c library, therefore I am unable to use it. Is there a ZeroMQ client I can use to connect to the server, or is the implementation simple enough for me to do myself?

A: 

There is currently no pure Java implementation of 0mq. As you say, there is a Java language binding but it requires a native library to function. A pure Java replacement for the library would not be trivial to implement.

Jon