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.
PGM
What would be required to integrate a pgm solution (JNI or otherwise)? I'd be interested in doing the work, just wondering what needs to be done. Thanks!
The purpose of [ZSocket](https://github.com/zeromq/jeromq/blob/master/src/main/java/org/zeromq/ZSocket.java) is to allow users to create and use sockets without having to worry about managing their own contexts. ZSockets have a "hidden" ManagedContext, which are used...
After closing a ZMQ.Socket like below (simplified code) a few seconds later a SYN_SENT is send which causes an underlying tcp socket to connect again. And when starting a new...
Any chance of supporting Unix domain sockets? Java supports it with thirdparty libraries like junixsocket which PostgreSQL JDBC driver can use to connect to a DB server: https://jdbc.postgresql.org/documentation/use/
Not sure how much this is related to other issues that have reported hangs in `send()`, like #34 #725 . ## Minimal example ``` import org.zeromq.SocketType; import org.zeromq.ZContext; import org.zeromq.ZMQ;...
Use SocketType PAIR mode. After connecting to the server, the client can receive and receive data normally. But after running for a period of time, the server cannot receive data.
Steps to recreate: * Create a socket and using the monitoring API to track connection closed and handshakes. * Pull network plug on one of the devices * This will...
Hi, I built jeromq 0.6.0 on windows 11. Everytime I try to create a basic TCP socket connection I am getting error 43: protocol not supported. I am trying to...
Hi, I am trying to build jeromq on a Windows 11 computer with the latest versions of Java and Maven. Unfortunately, the build gets stuck after Test Run 13 showing...
### Problem We use JeroMQ 0.5.1 to build a PUSH-PULL pipeline We have strict requirement to ensure no loss of events and we do a quite a few number of...