zeromq / jeromq

JeroMQ is a pure Java implementation of the ZeroMQ messaging library, offering high-performance asynchronous messaging for distributed or concurrent applications.
https://zeromq.org
Mozilla Public License 2.0
2.36k stars 485 forks source link

Unix socket support? #992

Closed marekkrk closed 1 month ago

marekkrk commented 3 months ago

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/

fbacchella commented 3 months ago

The work has been started https://github.com/fbacchella/jeromq/tree/ipc_unix_socket

trevorbernard commented 1 month ago

IPC is now supported using Java 16 and above in master. Support was added with this PR: https://github.com/zeromq/jeromq/pull/998