How to use zeroMQ in Desktop application

后端 未结 2 1585
闹比i
闹比i 2021-02-02 04:38

I am working in a desktop application, where application is deployed in both windows and mac platforms. As part of the application, it should communicate with native layer. Curr

2条回答
  •  遇见更好的自我
    2021-02-02 05:13

    1. How zeroMQ better than sockets

      http://zeromq.org/topics:omq-is-just-sockets

    2. Is it possible to install zeroMQ library as part the Desktop client installation?

      Yes, you need to build the libraries depends on the processor and embed them in your application.

    3. Do I need to build it separately from the source code for different processors?

      Yes, you need to build the libraries from source. zeroMQ is processor centric.

    4. Do I still require .dll files to use zeroMQ in Java? Yes, Following link may help you

      Exception in thread "main" java.lang.UnsatisfiedLinkError: ... \jzmq.dll: Can't find dependent libraries

    5. Do I require Visual studio to build zeroMQ libraries in windows?

      Yes

    This link may help you to get basic examples.

提交回复
热议问题