jeromq
jeromq copied to clipboard
JeroMQ is a pure Java implementation of the ZeroMQ messaging library, offering high-performance asynchronous messaging for distributed or concurrent applications.
I use the PUB/SUB,subcriber to bind while the publicher to connect. EXCEPTION=java.net.SocketTimeoutException\: failed to connect to /192.168.2.88 (port 9900)\: isConnected failed\: ETIMEDOUT (Connection timed out) My device ip address is...
The following program expects a hartbeat from a PUB socket once a second (actually waits 2 seconds for margin); if it doesn't receive it, it disconnects and reconnects the SUB...
When reading the source from `zmq.socket.Sockets`, it make thing that ordinal get the same value that the type, so `zmq.socket.Sockets.PUSH.ordinal() == zmq.ZMQ.PUSH` and the same for all values. One needs...
Hello, We are currently testing some communication solution using the JeroMQ framework (v0.4.3). The exchange is local to a computer and works perfectly except from time to time one message...
Hello again gents, We are getting the following Null Pointer Exception. Using the latest version 4.3 on Android. Can be replicated consistently enough after enabling/disabling Airplane mode on the device...
In my context, I have to deliver multi-part messages using a TCP PAIR. Everything goes right, until I have to release resources in a deteriorated situation: the peer receiving data,...
If I have a ZeroMQ socket variable like this: `final Socket socket = getSocket();` Then can I figure out what endpoint or machine I have in that socket variable? I...
According to the documentation of 'org.zeromq.ZMQ.EVENT_ACCEPTED' the 'value is the FD of the accepted socket.', however the value field is not being set for 'EVENT_ACCEPTED' events. The bellow sample shows...
`ZPoller.register` is used to [register Sockets](https://github.com/zeromq/jeromq/blob/7a858e0/src/main/java/org/zeromq/ZPoller.java#L383-L399), but cannot be used with ZSocket. Fixing this will bring us closer to a viable context-free API ( #394 ) centered around the ZSocket...
> Based on libzmq 3.2.5. So when will this be in line with main ZeroMQ, that it 4.2 as of Nov 2016?