Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pure java ZeroMQ clients?

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?

like image 514
fanar Avatar asked Aug 15 '10 06:08

fanar


People also ask

Who uses ZeroMQ?

Who uses ZeroMQ? 54 companies reportedly use ZeroMQ in their tech stacks, including Alibaba Travels, energy2market, and XING.

Is ZeroMQ a message broker?

ZeroMQ (also spelled ØMQ, 0MQ or ZMQ) is an asynchronous messaging library, aimed at use in distributed or concurrent applications. It provides a message queue, but unlike message-oriented middleware, a ZeroMQ system can run without a dedicated message broker; the zero in the name is for zero broker.

Is ZeroMQ TCP or UDP?

ZeroMQ sockets carry messages, like UDP, rather than a stream of bytes as TCP does. A ZeroMQ message is length-specified binary data.

Is ZeroMQ open source?

Backed by a large and active open source community.


1 Answers

I'm working on pure java ZeroMQ.

https://github.com/miniway/jeromq

Even it is very early stage and might not quite fit for production usage right now.

But I hope it would help, as I made it with a passion.

like image 186
Min Avatar answered Oct 05 '22 23:10

Min