Registry / messaging / zeromq

zeromq

JSON →
library4.3.5vcpkgunverified

ZeroMQ is a high-performance asynchronous messaging library for distributed or concurrent applications.

vcpkg install zeromq
INSTALL
IMPORT
SIG · ZEROMQ
Z
zeromq
messagingcppv4.3.5
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

zmq.hpp
#include <zmq.hpp>

Creates a ZeroMQ REQ socket and connects to a server.

#include <zmq.hpp> #include <iostream> int main() { zmq::context_t ctx(1); zmq::socket_t sock(ctx, zmq::socket_type::req); sock.connect("tcp://localhost:5555"); std::cout << "Connected" << std::endl; return 0; }
Debug
Known issues
gotchaZeroMQ requires linking with the zmq library; header-only usage is not possible.
fix
Ensure target_link_libraries includes ZeroMQ::libzmq.
affects: *
Upgrade
Version history
4.3.5latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
38 hits · last 30 days
node
34
OpenAI (training)
1
Resources

No resource links recorded.

zeromq — pip install zeromq · libregistry