2023-10-21 01:50:38 +02:00
|
|
|
= zmq(7)
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== NAME
|
2010-02-10 16:18:46 +01:00
|
|
|
zmq - 0MQ lightweight messaging kernel
|
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SYNOPSIS
|
2010-03-09 18:47:31 +01:00
|
|
|
*#include <zmq.h>*
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
*cc* ['flags'] 'files' *-lzmq* ['libraries']
|
2009-12-04 10:06:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== DESCRIPTION
|
2010-03-09 18:47:31 +01:00
|
|
|
The 0MQ lightweight messaging kernel is a library which extends the standard
|
|
|
|
socket interfaces with features traditionally provided by specialised
|
|
|
|
_messaging middleware_ products. 0MQ sockets provide an abstraction of
|
2012-05-21 14:06:34 +02:00
|
|
|
asynchronous _message queues_, multiple _messaging patterns_, message
|
2010-03-09 18:47:31 +01:00
|
|
|
filtering (_subscriptions_), seamless access to multiple _transport protocols_
|
|
|
|
and more.
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
This documentation presents an overview of 0MQ concepts, describes how 0MQ
|
|
|
|
abstracts standard sockets and provides a reference manual for the functions
|
|
|
|
provided by the 0MQ library.
|
2009-12-04 10:06:46 +01:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Context
|
|
|
|
~~~~~~~
|
2016-11-21 14:11:33 +01:00
|
|
|
The 0MQ 'context' keeps the list of sockets and manages the async I/O thread
|
|
|
|
and internal queries.
|
|
|
|
|
2012-03-20 01:41:20 +01:00
|
|
|
Before using any 0MQ library functions you must create a 0MQ 'context'. When
|
|
|
|
you exit your application you must destroy the 'context'. These functions let
|
|
|
|
you work with 'contexts':
|
|
|
|
|
|
|
|
Create a new 0MQ context::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_ctx_new.adoc[zmq_ctx_new]
|
2012-03-20 01:41:20 +01:00
|
|
|
|
|
|
|
Work with context properties::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_ctx_set.adoc[zmq_ctx_set]
|
|
|
|
* xref:zmq_ctx_get.adoc[zmq_ctx_get]
|
2012-03-20 01:41:20 +01:00
|
|
|
|
|
|
|
Destroy a 0MQ context::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_ctx_shutdown.adoc[zmq_ctx_shutdown]
|
|
|
|
* xref:zmq_ctx_term.adoc[zmq_ctx_term]
|
2012-03-20 01:41:20 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Thread safety
|
|
|
|
^^^^^^^^^^^^^
|
|
|
|
A 0MQ 'context' is thread safe and may be shared among as many application
|
2010-12-01 10:57:37 +01:00
|
|
|
threads as necessary, without any additional locking required on the part of
|
|
|
|
the caller.
|
|
|
|
|
|
|
|
Individual 0MQ 'sockets' are _not_ thread safe except in the case where full
|
|
|
|
memory barriers are issued when migrating a socket from one thread to another.
|
|
|
|
In practice this means applications can create a socket in one thread with
|
|
|
|
_zmq_socket()_ and then pass it to a _newly created_ thread as part of thread
|
2014-11-08 07:24:07 +01:00
|
|
|
initialisation, for example via a structure passed as an argument to
|
2010-12-01 10:57:37 +01:00
|
|
|
_pthread_create()_.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
Multiple contexts
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
Multiple 'contexts' may coexist within a single application. Thus, an
|
|
|
|
application can use 0MQ directly and at the same time make use of any number of
|
|
|
|
additional libraries or components which themselves make use of 0MQ as long as
|
|
|
|
the above guidelines regarding thread safety are adhered to.
|
|
|
|
|
|
|
|
|
|
|
|
Messages
|
|
|
|
~~~~~~~~
|
|
|
|
A 0MQ message is a discrete unit of data passed between applications or
|
|
|
|
components of the same application. 0MQ messages have no internal structure and
|
2010-03-10 12:19:39 +01:00
|
|
|
from the point of view of 0MQ itself they are considered to be opaque binary
|
|
|
|
data.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
The following functions are provided to work with messages:
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
Initialise a message::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_init.adoc[zmq_msg_init]
|
|
|
|
* xref:zmq_msg_init_size.adoc[zmq_msg_init_size]
|
|
|
|
* xref:zmq_msg_init_buffer.adoc[zmq_msg_init_buffer]
|
|
|
|
* xref:zmq_msg_init_data.adoc[zmq_msg_init_data]
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2012-02-15 22:37:35 +01:00
|
|
|
Sending and receiving a message::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_send.adoc[zmq_msg_send]
|
|
|
|
* xref:zmq_msg_recv.adoc[zmq_msg_recv]
|
2012-02-15 22:37:35 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Release a message::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_close.adoc[zmq_msg_close]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
Access message content::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_data.adoc[zmq_msg_data]
|
|
|
|
* xref:zmq_msg_size.adoc[zmq_msg_size]
|
|
|
|
* xref:zmq_msg_more.adoc[zmq_msg_more]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2012-02-16 01:41:09 +01:00
|
|
|
Work with message properties::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_gets.adoc[zmq_msg_gets]
|
|
|
|
* xref:zmq_msg_get.adoc[zmq_msg_get]
|
|
|
|
* xref:zmq_msg_set.adoc[zmq_msg_set]
|
2012-02-15 17:05:22 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
Message manipulation::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_copy.adoc[zmq_msg_copy]
|
|
|
|
* xref:zmq_msg_move.adoc[zmq_msg_move]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Sockets
|
|
|
|
~~~~~~~
|
2017-06-23 18:57:33 +02:00
|
|
|
0MQ sockets present an abstraction of an asynchronous _message queue_, with the
|
2010-06-02 18:36:34 +02:00
|
|
|
exact queueing semantics depending on the socket type in use. See
|
2023-10-21 01:50:38 +02:00
|
|
|
xref:zmq_socket.adoc[zmq_socket] for the socket types provided.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
The following functions are provided to work with sockets:
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
Creating a socket::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_socket.adoc[zmq_socket]
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
Closing a socket::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_close.adoc[zmq_close]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-05-31 14:13:41 +02:00
|
|
|
Manipulating socket options::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_getsockopt.adoc[zmq_getsockopt]
|
|
|
|
* xref:zmq_setsockopt.adoc[zmq_setsockopt]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
Establishing a message flow::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_bind.adoc[zmq_bind]
|
|
|
|
* xref:zmq_connect.adoc[zmq_connect]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Sending and receiving messages::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_msg_send.adoc[zmq_msg_send]
|
|
|
|
* xref:zmq_msg_recv.adoc[zmq_msg_recv]
|
|
|
|
* xref:zmq_send.adoc[zmq_send]
|
|
|
|
* xref:zmq_recv.adoc[zmq_recv]
|
|
|
|
* xref:zmq_send_const.adoc[zmq_send_const]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2014-12-23 01:14:38 +01:00
|
|
|
Monitoring socket events::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_socket_monitor.adoc[zmq_socket_monitor]
|
2013-10-28 11:48:28 +01:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
.Input/output multiplexing
|
2010-03-09 18:47:31 +01:00
|
|
|
0MQ provides a mechanism for applications to multiplex input/output events over
|
|
|
|
a set containing both 0MQ sockets and standard sockets. This mechanism mirrors
|
|
|
|
the standard _poll()_ system call, and is described in detail in
|
2023-10-21 01:50:38 +02:00
|
|
|
xref:zmq_poll.adoc[zmq_poll] This API is deprecated, however.
|
2018-05-13 18:11:43 +02:00
|
|
|
|
|
|
|
There is a new DRAFT API with multiple zmq_poller_* function, which is described
|
2023-10-21 01:50:38 +02:00
|
|
|
in xref:zmq_poller.adoc[zmq_poller]
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Transports
|
|
|
|
~~~~~~~~~~
|
|
|
|
A 0MQ socket can use multiple different underlying transport mechanisms.
|
|
|
|
Each transport mechanism is suited to a particular purpose and has its own
|
|
|
|
advantages and drawbacks.
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
The following transport mechanisms are provided:
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Unicast transport using TCP::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_tcp.adoc[zmq_tcp]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Reliable multicast transport using PGM::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_pgm.adoc[zmq_pgm]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Local inter-process communication transport::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_ipc.adoc[zmq_ipc]
|
2010-01-15 14:11:39 +01:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Local in-process (inter-thread) communication transport::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_inproc.adoc[zmq_inproc]
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2015-12-07 13:19:45 +01:00
|
|
|
Virtual Machine Communications Interface (VMC) transport::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_vmci.adoc[zmq_vmci]
|
2015-12-07 13:19:45 +01:00
|
|
|
|
2016-04-29 10:32:12 +02:00
|
|
|
Unreliable unicast and multicast using UDP::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_udp.adoc[zmq_udp]
|
2016-04-29 10:32:12 +02:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2012-09-06 12:20:21 +02:00
|
|
|
Proxies
|
2012-03-16 22:39:11 +01:00
|
|
|
~~~~~~~
|
2012-09-06 12:20:21 +02:00
|
|
|
0MQ provides 'proxies' to create fanout and fan-in topologies. A proxy connects
|
|
|
|
a 'frontend' socket to a 'backend' socket and switches all messages between the
|
|
|
|
two sockets, opaquely. A proxy may optionally capture all traffic to a third
|
2023-10-21 01:50:38 +02:00
|
|
|
socket. To start a proxy in an application thread, use xref:zmq_proxy.adoc[zmq_proxy]
|
2012-03-16 22:39:11 +01:00
|
|
|
|
|
|
|
|
2013-05-15 17:54:03 +02:00
|
|
|
Security
|
|
|
|
~~~~~~~~
|
|
|
|
A 0MQ socket can select a security mechanism. Both peers must use the same
|
|
|
|
security mechanism.
|
|
|
|
|
|
|
|
The following security mechanisms are provided for IPC and TCP connections:
|
|
|
|
|
|
|
|
Null security::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_null.adoc[zmq_null]
|
2013-05-15 17:54:03 +02:00
|
|
|
|
2013-06-20 18:09:12 +02:00
|
|
|
Plain-text authentication using username and password::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_plain.adoc[zmq_plain]
|
2013-05-15 17:54:03 +02:00
|
|
|
|
2013-06-20 18:09:12 +02:00
|
|
|
Elliptic curve authentication and encryption::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_curve.adoc[zmq_curve]
|
2013-05-15 17:54:03 +02:00
|
|
|
|
2014-12-23 01:14:38 +01:00
|
|
|
Generate a CURVE keypair in armored text format::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_curve_keypair.adoc[zmq_curve_keypair]
|
2013-09-30 15:14:02 +02:00
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
Derive a CURVE public key from a secret key::
|
|
|
|
* xref:zmq_curve_public.adoc[zmq_curve_public]
|
2016-12-26 14:23:32 +01:00
|
|
|
|
2014-12-23 01:14:38 +01:00
|
|
|
Converting keys to/from armoured text strings::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_z85_decode.adoc[zmq_z85_decode]
|
|
|
|
* xref:zmq_z85_encode.adoc[zmq_z85_encode]
|
2013-09-30 15:14:02 +02:00
|
|
|
|
2013-05-15 17:54:03 +02:00
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== ERROR HANDLING
|
2010-03-09 18:47:31 +01:00
|
|
|
The 0MQ library functions handle errors using the standard conventions found on
|
|
|
|
POSIX systems. Generally, this means that upon failure a 0MQ library function
|
|
|
|
shall return either a NULL value (if returning a pointer) or a negative value
|
|
|
|
(if returning an integer), and the actual error code shall be stored in the
|
|
|
|
'errno' variable.
|
|
|
|
|
2010-06-03 14:08:36 +02:00
|
|
|
On non-POSIX systems some users may experience issues with retrieving the
|
|
|
|
correct value of the 'errno' variable. The _zmq_errno()_ function is provided
|
2023-10-21 01:50:38 +02:00
|
|
|
to assist in these cases; for details refer to xref:zmq_errno.adoc[zmq_errno]
|
2010-06-03 14:08:36 +02:00
|
|
|
|
|
|
|
The _zmq_strerror()_ function is provided to translate 0MQ-specific error codes
|
2023-10-21 01:50:38 +02:00
|
|
|
into error message strings; for details refer to xref:zmq_strerror.adoc[zmq_strerror]
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== UTILITY
|
2014-12-23 01:14:38 +01:00
|
|
|
The following utility functions are provided:
|
|
|
|
|
|
|
|
Working with atomic counters::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_atomic_counter_new.adoc[zmq_atomic_counter_new]
|
|
|
|
* xref:zmq_atomic_counter_set.adoc[zmq_atomic_counter_set]
|
|
|
|
* xref:zmq_atomic_counter_inc.adoc[zmq_atomic_counter_inc]
|
|
|
|
* xref:zmq_atomic_counter_dec.adoc[zmq_atomic_counter_dec]
|
|
|
|
* xref:zmq_atomic_counter_value.adoc[zmq_atomic_counter_value]
|
|
|
|
* xref:zmq_atomic_counter_destroy.adoc[zmq_atomic_counter_destroy]
|
2014-12-23 01:14:38 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== MISCELLANEOUS
|
2010-03-09 19:29:41 +01:00
|
|
|
The following miscellaneous functions are provided:
|
|
|
|
|
|
|
|
Report 0MQ library version::
|
2023-10-21 01:50:38 +02:00
|
|
|
* xref:zmq_version.adoc[zmq_version]
|
2010-03-09 19:29:41 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== LANGUAGE BINDINGS
|
2010-03-09 18:47:31 +01:00
|
|
|
The 0MQ library provides interfaces suitable for calling from programs in any
|
|
|
|
language; this documentation documents those interfaces as they would be used
|
|
|
|
by C programmers. The intent is that programmers using 0MQ from other languages
|
|
|
|
shall refer to this documentation alongside any documentation provided by the
|
|
|
|
vendor of their language binding.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2012-05-21 14:06:34 +02:00
|
|
|
Language bindings ($$C++$$, Python, PHP, Ruby, Java and more) are provided by
|
|
|
|
members of the 0MQ community and pointers can be found on the 0MQ website.
|
2009-12-04 10:06:46 +01:00
|
|
|
|
2010-09-04 15:55:11 +02:00
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== AUTHORS
|
2013-04-11 18:53:02 +02:00
|
|
|
This page was written by the 0MQ community. To make a change please
|
2023-11-22 23:18:23 +01:00
|
|
|
read the 0MQ Contribution Policy at <https://zeromq.org/how-to-contribute/>.
|
2010-09-04 15:55:11 +02:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== RESOURCES
|
2010-09-04 15:55:11 +02:00
|
|
|
Main web site: <http://www.zeromq.org/>
|
|
|
|
|
|
|
|
Report bugs to the 0MQ development mailing list: <zeromq-dev@lists.zeromq.org>
|
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== LICENSE
|
2023-06-05 01:16:05 +02:00
|
|
|
Free use of this software is granted under the terms of the Mozilla Public
|
|
|
|
License Version 2.0 (MPL-2.0). For details see the file `LICENSE` included with
|
|
|
|
the 0MQ distribution.
|