anyone knows if the java bindings "jzmq" for ZeroMQ work with ZeroMQ version 3.x.x ? There is NOWEHERE official information about that. Anyone an idea?
Does "jzmq" support ZeroMQ Version 3?
624 Views Asked by AlexLiesenfeld At
2
There are 2 best solutions below
0
Claude
On
I didn't have any problems when using the Mule & Apache CXF ZeroMQ transports with ZeroMQ 3.2.2 and jzmq 2.1.0. Having said that, I don't know if jzmq, underneath, is calling methods deprecated in ZeroMQ 3.2.2.
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in ZEROMQ
- What's the right ZMQ architecture for my scenario?
- Can you lose messages when using xpub xsub with zmq?
- ZeroMQ: Is there no other way than polling or sleep to check if a socket is connected?
- How do I receive TCP messages on an android Emulator from a physcal device
- How do I make a dynamic list or array of ZeroMQ (pyzmq) sockets/contexts in Python?
- c++ zeromq with pgm crash in joining multicast in windows
- How to close a ZMQ socket correctly?
- How can I clear the internal buffer of ZMQ multicast without closing the socket?
- using ZeroMQ with Electron 22 and Electron-Forge
- How to pause PUSH messages until the socket has a client with ZeroMQ?
- Issue checking if a ZeroMQ server is ready to talk to clients
- Do zmq subscribers know to skip subsequent parts of filtered topics for multipart messages?
- Execute multiple zmq send in same event loop with php ratchet
- client/server ipcameras over network usage at least cpu
- How to prevent fake identites in zmq dealer-router pattern
Related Questions in JZMQ
- Why am I getting an Errno 4 ZMQException?
- Purpose of zeromq send high watermark
- Subscribe to custom events in Hyperledger Sawtooth browser client app
- ZeroMQ is dropping messages
- How to create a Poller in jzmq Java bindings for ZeroMQ?
- ZeroMQ REQ-ROUTER messages not being received
- ZeroMQ running server Java
- ZMQ implemetnation with Major domo pattern. is it possible to mix connection protocols between worker-broker and broker-client?
- ZeroMQ (ZMQ) feeding VivaGraph graph on client side
- error: package org.zeromq.ZMQ does not exist
- Setup ZeroMQ for Android Studio
- Getting error java.lang.UnsatisfiedLinkError: no jzmq in java.library.path in IntelliJ ide with windows 10
- ZMQ (jzmq) - what is the purpose of the ZThread?
- No jzmq in java.library.path
- Is jzmq deprecated?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Indeed, not easy to find. However, browsing around in the jzmq code, it seems that 3.0 (and possibly higher) versions are supported. Have a look at the following java file, it contains notions about 3.0 including various checks for current zmq version and appropriate handling (e.g. supporting newer zmq 3.0+ functionality):
https://github.com/zeromq/jzmq/blob/master/src/org/zeromq/ZMQ.java
For example (line 813 per 2013-01-31):