A Julia interface to ZeroMQ
Documentation |
---|
ZMQ.jl is a Julia interface to ZeroMQ, The Intelligent Transport Layer.
The package can be installed with the Julia package manager.
From the Julia REPL, type ]
to enter the Pkg REPL mode and run:
pkg> add ZMQ
Or, equivalently, via the Pkg
API:
julia> import Pkg; Pkg.add("ZMQ")
(This installs its own copy of the ZMQ libraries from the ZMQBuilder repository.)
- STABLE — documentation of the most recently tagged version.
- DEVEL — documentation of the in-development version.
If you are using Windows and get an error Provider PackageManager failed to satisfy dependency zmq
, you may need to restart Julia and run Pkg.build("ZMQ")
again. See issue #69 for more details.
Usage questions can be posted on the Julia Discourse forum under the zmq
tag, in the #zmq channel of the Julia Slack and/or in the JuliaDocs Gitter chat room.
Contributions are very welcome, as are feature requests and suggestions. Please open an issue if you encounter any problems. The contributing page has a few guidelines that should be followed when opening pull requests and contributing code.