jeromq icon indicating copy to clipboard operation
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.

Results 104 jeromq issues
Sort by recently updated
recently updated
newest added

I am using the Jer0mq server socket model and specifically the router dealer pattern because I want to validate the identity of the clients. My problem is that I notice...

Using v0.5.2 My program is able to run days sending binary pictures, but will occasionally encounter an IndexOutOfBoundsException. I am not sure if it's an apparent issue with the data...

Compatibility is a bit tricky because the current "ipc" implementation isn't ipc, so anyone relying on the jeromq tcp loopback implementation intentionally will break. I think this would only really...

My system has a broker with two sockets, one xPub and one xSub. When I try to subscribe the xSub socket to all topics I get an `IllegalArgumentException` with the...

Using version 0.5.4, after having interrupted a thread in which an open subscription was running, followed by calls to `ZMonitor.close()` and `ZContext.close()`, I got the following NPE (the first exception...

I have a setup like the following (in version 0.5.4): ```java monitor = new ZMonitor(context, socket); monitor.add(CONNECTED, DISCONNECTED); monitor.start(); monitorFuture = runAsync(() -> { while (!closed) { var event =...

I’m seeing an issue with an expected DISCONNECTED event not received. I instantiate one client/server in PUB/SUB mode. Set following options for sockets: ZMQ_HEARTBEAT_IVL = 5 sec ZMQ_HEARTBEAT_TIMEOUT = 15...

hi all can someone please explain with an example how to make high water mark option work for pub type sockets. I have tried but the publisher seems to publish...

more information needed

### **Implementation Smells** **Extract method** Extracted ‘setupBroadcastChannel’ and ‘broadcastBeacon’ in BroadcastClient, and for better code organization and readability. This resolves the one of the implementation smell in the ‘ZBeacon’ class...

While using the jeromq library, we suddenly encountered an issue where the reaper-1 thread is consuming 99.9% CPU. The issue occurred unexpectedly, as it hadn't happened during previous runs. The...