2010-02-10 16:18:46 +01:00
|
|
|
zmq_socket(3)
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2010-03-09 18:47:31 +01:00
|
|
|
zmq_socket - create 0MQ socket
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2010-03-09 18:47:31 +01:00
|
|
|
*void *zmq_socket (void '*context', int 'type');*
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2010-03-09 18:47:31 +01:00
|
|
|
The 'zmq_socket()' function shall create a 0MQ socket within the specified
|
|
|
|
'context' and return an opaque handle to the newly created socket. The 'type'
|
2010-03-10 12:19:39 +01:00
|
|
|
argument specifies the socket type, which determines the semantics of
|
2010-03-09 18:47:31 +01:00
|
|
|
communication over the socket.
|
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
The newly created socket is initially unbound, and not associated with any
|
|
|
|
endpoints. In order to establish a message flow a socket must first be
|
|
|
|
connected to at least one endpoint with linkzmq:zmq_connect[3], or at least one
|
|
|
|
endpoint must be created for accepting incoming connections with
|
|
|
|
linkzmq:zmq_bind[3].
|
|
|
|
|
|
|
|
.Key differences to conventional sockets
|
|
|
|
Generally speaking, conventional sockets present a _synchronous_ interface to
|
|
|
|
either connection-oriented reliable byte streams (SOCK_STREAM), or
|
|
|
|
connection-less unreliable datagrams (SOCK_DGRAM). In comparison, 0MQ sockets
|
|
|
|
present an abstraction of an asynchronous _message queue_, with the exact
|
|
|
|
queueing semantics depending on the socket type in use. Where conventional
|
|
|
|
sockets transfer streams of bytes or discrete datagrams, 0MQ sockets transfer
|
|
|
|
discrete _messages_.
|
|
|
|
|
|
|
|
0MQ sockets being _asynchronous_ means that the timings of the physical
|
2010-12-01 10:57:37 +01:00
|
|
|
connection setup and tear down, reconnect and effective delivery are transparent
|
2010-06-02 18:36:34 +02:00
|
|
|
to the user and organized by 0MQ itself. Further, messages may be _queued_ in
|
|
|
|
the event that a peer is unavailable to receive them.
|
|
|
|
|
|
|
|
Conventional sockets allow only strict one-to-one (two peers), many-to-one
|
|
|
|
(many clients, one server), or in some cases one-to-many (multicast)
|
|
|
|
relationships. With the exception of 'ZMQ_PAIR', 0MQ sockets may be connected
|
|
|
|
*to multiple endpoints* using _zmq_connect()_, while simultaneously accepting
|
|
|
|
incoming connections *from multiple endpoints* bound to the socket using
|
|
|
|
_zmq_bind()_, thus allowing many-to-many relationships.
|
|
|
|
|
2010-12-01 10:57:37 +01:00
|
|
|
.Thread safety
|
2011-03-03 12:15:08 +01:00
|
|
|
0MQ 'sockets' are _not_ thread safe. Applications MUST NOT use a socket
|
|
|
|
from multiple threads except after migrating a socket from one thread to
|
|
|
|
another with a "full fence" memory barrier.
|
2010-12-01 10:57:37 +01:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
.Socket types
|
2012-02-15 16:49:40 +01:00
|
|
|
The following sections present the socket types defined by 0MQ, grouped by the
|
|
|
|
general _messaging pattern_ which is built from related socket types.
|
2010-05-28 00:49:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
Request-reply pattern
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~
|
2012-10-27 02:43:19 +02:00
|
|
|
The request-reply pattern is used for sending requests from a ZMQ_REQ _client_
|
|
|
|
to one or more ZMQ_REP _services_, and receiving subsequent replies to each
|
2012-02-15 16:49:40 +01:00
|
|
|
request sent.
|
2010-05-28 00:49:13 +02:00
|
|
|
|
2013-11-13 13:57:53 +01:00
|
|
|
The request-reply pattern is formally defined by http://rfc.zeromq.org/spec:28.
|
2010-05-28 00:49:13 +02:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
ZMQ_REQ
|
|
|
|
^^^^^^^
|
2010-05-28 00:49:13 +02:00
|
|
|
A socket of type 'ZMQ_REQ' is used by a _client_ to send requests to and
|
|
|
|
receive replies from a _service_. This socket type allows only an alternating
|
|
|
|
sequence of _zmq_send(request)_ and subsequent _zmq_recv(reply)_ calls. Each
|
2012-02-15 16:49:40 +01:00
|
|
|
request sent is round-robined among all _services_, and each reply received is
|
2010-06-02 18:36:34 +02:00
|
|
|
matched with the last issued request.
|
2010-05-28 00:49:13 +02:00
|
|
|
|
2013-06-07 13:28:47 +02:00
|
|
|
If no services are available, then any send operation on the socket shall
|
|
|
|
block until at least one _service_ becomes available. The REQ socket shall
|
|
|
|
not discard messages.
|
2010-06-02 18:36:34 +02:00
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_REQ characteristics
|
2012-04-16 15:08:15 +02:00
|
|
|
Compatible peer sockets:: 'ZMQ_REP', 'ZMQ_ROUTER'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Bidirectional
|
2010-06-02 18:36:34 +02:00
|
|
|
Send/receive pattern:: Send, Receive, Send, Receive, ...
|
2012-02-15 16:49:40 +01:00
|
|
|
Outgoing routing strategy:: Round-robin
|
2010-06-02 18:36:34 +02:00
|
|
|
Incoming routing strategy:: Last peer
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Block
|
2010-05-28 00:49:13 +02:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
|
|
|
|
ZMQ_REP
|
|
|
|
^^^^^^^
|
2010-05-28 00:49:13 +02:00
|
|
|
A socket of type 'ZMQ_REP' is used by a _service_ to receive requests from and
|
2010-06-02 18:36:34 +02:00
|
|
|
send replies to a _client_. This socket type allows only an alternating
|
2010-05-28 00:49:13 +02:00
|
|
|
sequence of _zmq_recv(request)_ and subsequent _zmq_send(reply)_ calls. Each
|
2010-06-02 18:36:34 +02:00
|
|
|
request received is fair-queued from among all _clients_, and each reply sent
|
2011-03-16 16:32:31 +01:00
|
|
|
is routed to the _client_ that issued the last request. If the original
|
2013-06-07 13:28:47 +02:00
|
|
|
requester does not exist any more the reply is silently discarded.
|
2010-06-02 18:36:34 +02:00
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_REP characteristics
|
2012-04-16 15:08:15 +02:00
|
|
|
Compatible peer sockets:: 'ZMQ_REQ', 'ZMQ_DEALER'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Bidirectional
|
2010-06-02 18:36:34 +02:00
|
|
|
Send/receive pattern:: Receive, Send, Receive, Send, ...
|
|
|
|
Incoming routing strategy:: Fair-queued
|
2010-12-01 10:57:37 +01:00
|
|
|
Outgoing routing strategy:: Last peer
|
2010-05-28 00:49:13 +02:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-02-15 16:49:40 +01:00
|
|
|
ZMQ_DEALER
|
|
|
|
^^^^^^^^^^
|
|
|
|
A socket of type 'ZMQ_DEALER' is an advanced pattern used for extending
|
|
|
|
request/reply sockets. Each message sent is round-robined among all connected
|
2010-08-25 12:50:16 +02:00
|
|
|
peers, and each message received is fair-queued from all connected peers.
|
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
When a 'ZMQ_DEALER' socket enters the 'mute' state due to having reached the
|
2010-08-25 12:50:16 +02:00
|
|
|
high water mark for all peers, or if there are no peers at all, then any
|
2012-10-27 02:43:19 +02:00
|
|
|
linkzmq:zmq_send[3] operations on the socket shall block until the mute
|
2010-08-25 12:50:16 +02:00
|
|
|
state ends or at least one peer becomes available for sending; messages are not
|
|
|
|
discarded.
|
|
|
|
|
2012-02-15 16:49:40 +01:00
|
|
|
When a 'ZMQ_DEALER' socket is connected to a 'ZMQ_REP' socket each message sent
|
|
|
|
must consist of an empty message part, the _delimiter_, followed by one or more
|
|
|
|
_body parts_.
|
|
|
|
|
2010-08-25 12:50:16 +02:00
|
|
|
[horizontal]
|
2012-02-15 16:49:40 +01:00
|
|
|
.Summary of ZMQ_DEALER characteristics
|
2012-11-07 17:23:37 +01:00
|
|
|
Compatible peer sockets:: 'ZMQ_ROUTER', 'ZMQ_REP', 'ZMQ_DEALER'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Bidirectional
|
2010-08-25 12:50:16 +02:00
|
|
|
Send/receive pattern:: Unrestricted
|
2012-02-15 16:49:40 +01:00
|
|
|
Outgoing routing strategy:: Round-robin
|
2010-08-25 12:50:16 +02:00
|
|
|
Incoming routing strategy:: Fair-queued
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Block
|
2010-08-25 12:50:16 +02:00
|
|
|
|
|
|
|
|
2012-02-15 16:49:40 +01:00
|
|
|
ZMQ_ROUTER
|
|
|
|
^^^^^^^^^^
|
|
|
|
A socket of type 'ZMQ_ROUTER' is an advanced socket type used for extending
|
|
|
|
request/reply sockets. When receiving messages a 'ZMQ_ROUTER' socket shall
|
|
|
|
prepend a message part containing the _identity_ of the originating peer to the
|
|
|
|
message before passing it to the application. Messages received are fair-queued
|
|
|
|
from among all connected peers. When sending messages a 'ZMQ_ROUTER' socket shall
|
|
|
|
remove the first part of the message and use it to determine the _identity_ of
|
|
|
|
the peer the message shall be routed to. If the peer does not exist anymore
|
2013-06-05 12:42:25 +02:00
|
|
|
the message shall be silently discarded by default, unless 'ZMQ_ROUTER_MANDATORY'
|
2012-06-17 00:33:43 +02:00
|
|
|
socket option is set to '1'.
|
2011-09-03 09:02:56 +02:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
When a 'ZMQ_ROUTER' socket enters the 'mute' state due to having reached the
|
2012-06-17 00:33:43 +02:00
|
|
|
high water mark for all peers, then any messages sent to the socket shall be dropped
|
2012-10-27 02:43:19 +02:00
|
|
|
until the mute state ends. Likewise, any messages routed to a peer for which
|
2012-06-17 00:33:43 +02:00
|
|
|
the individual high water mark has been reached shall also be dropped.
|
2012-02-15 16:49:40 +01:00
|
|
|
|
|
|
|
When a 'ZMQ_REQ' socket is connected to a 'ZMQ_ROUTER' socket, in addition to the
|
|
|
|
_identity_ of the originating peer each message received shall contain an empty
|
|
|
|
_delimiter_ message part. Hence, the entire structure of each received message
|
|
|
|
as seen by the application becomes: one or more _identity_ parts, _delimiter_
|
|
|
|
part, one or more _body parts_. When sending replies to a 'ZMQ_REQ' socket the
|
|
|
|
application must include the _delimiter_ part.
|
|
|
|
|
2010-08-25 12:50:16 +02:00
|
|
|
[horizontal]
|
2012-02-15 16:49:40 +01:00
|
|
|
.Summary of ZMQ_ROUTER characteristics
|
2012-11-09 13:10:34 +01:00
|
|
|
Compatible peer sockets:: 'ZMQ_DEALER', 'ZMQ_REQ', 'ZMQ_ROUTER'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Bidirectional
|
2010-08-25 12:50:16 +02:00
|
|
|
Send/receive pattern:: Unrestricted
|
|
|
|
Outgoing routing strategy:: See text
|
|
|
|
Incoming routing strategy:: Fair-queued
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Drop
|
2010-08-25 12:50:16 +02:00
|
|
|
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
Publish-subscribe pattern
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
The publish-subscribe pattern is used for one-to-many distribution of data from
|
2010-12-01 10:57:37 +01:00
|
|
|
a single _publisher_ to multiple _subscribers_ in a fan out fashion.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2013-11-13 13:57:53 +01:00
|
|
|
The publish-subscribe pattern is formally defined by http://rfc.zeromq.org/spec:29.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
ZMQ_PUB
|
|
|
|
^^^^^^^
|
2010-03-09 18:47:31 +01:00
|
|
|
A socket of type 'ZMQ_PUB' is used by a _publisher_ to distribute data.
|
2010-12-01 10:57:37 +01:00
|
|
|
Messages sent are distributed in a fan out fashion to all connected peers.
|
2010-06-02 18:36:34 +02:00
|
|
|
The linkzmq:zmq_recv[3] function is not implemented for this socket type.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
When a 'ZMQ_PUB' socket enters the 'mute' state due to having reached the
|
2010-06-02 18:36:34 +02:00
|
|
|
high water mark for a _subscriber_, then any messages that would be sent to the
|
2012-10-27 02:43:19 +02:00
|
|
|
_subscriber_ in question shall instead be dropped until the mute state
|
2010-12-07 11:10:21 +01:00
|
|
|
ends. The _zmq_send()_ function shall never block for this socket type.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_PUB characteristics
|
2011-06-19 16:39:27 +02:00
|
|
|
Compatible peer sockets:: 'ZMQ_SUB', 'ZMQ_XSUB'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Unidirectional
|
2010-06-02 18:36:34 +02:00
|
|
|
Send/receive pattern:: Send only
|
|
|
|
Incoming routing strategy:: N/A
|
2010-12-01 10:57:37 +01:00
|
|
|
Outgoing routing strategy:: Fan out
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Drop
|
2010-06-02 18:36:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
ZMQ_SUB
|
|
|
|
^^^^^^^
|
2010-03-09 18:47:31 +01:00
|
|
|
A socket of type 'ZMQ_SUB' is used by a _subscriber_ to subscribe to data
|
|
|
|
distributed by a _publisher_. Initially a 'ZMQ_SUB' socket is not subscribed to
|
2010-06-02 18:36:34 +02:00
|
|
|
any messages, use the 'ZMQ_SUBSCRIBE' option of linkzmq:zmq_setsockopt[3] to
|
|
|
|
specify which messages to subscribe to. The _zmq_send()_ function is not
|
|
|
|
implemented for this socket type.
|
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_SUB characteristics
|
2011-06-19 16:39:27 +02:00
|
|
|
Compatible peer sockets:: 'ZMQ_PUB', 'ZMQ_XPUB'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Unidirectional
|
2010-06-02 18:36:34 +02:00
|
|
|
Send/receive pattern:: Receive only
|
|
|
|
Incoming routing strategy:: Fair-queued
|
|
|
|
Outgoing routing strategy:: N/A
|
2010-03-09 18:47:31 +01:00
|
|
|
|
|
|
|
|
2011-06-19 16:39:27 +02:00
|
|
|
ZMQ_XPUB
|
|
|
|
^^^^^^^^
|
|
|
|
Same as ZMQ_PUB except that you can receive subscriptions from the peers
|
|
|
|
in form of incoming messages. Subscription message is a byte 1 (for
|
|
|
|
subscriptions) or byte 0 (for unsubscriptions) followed by the subscription
|
2013-01-08 05:24:24 +01:00
|
|
|
body. Messages without a sub/unsub prefix are also received, but have no
|
|
|
|
effect on subscription status.
|
2011-06-19 16:39:27 +02:00
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_XPUB characteristics
|
|
|
|
Compatible peer sockets:: 'ZMQ_SUB', 'ZMQ_XSUB'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Unidirectional
|
2011-06-19 16:39:27 +02:00
|
|
|
Send/receive pattern:: Send messages, receive subscriptions
|
|
|
|
Incoming routing strategy:: N/A
|
|
|
|
Outgoing routing strategy:: Fan out
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Drop
|
2011-06-19 16:39:27 +02:00
|
|
|
|
|
|
|
|
2011-08-19 14:42:31 +02:00
|
|
|
ZMQ_XSUB
|
|
|
|
^^^^^^^^
|
2011-06-19 16:39:27 +02:00
|
|
|
Same as ZMQ_SUB except that you subscribe by sending subscription messages to
|
|
|
|
the socket. Subscription message is a byte 1 (for subscriptions) or byte 0
|
2013-01-08 05:24:24 +01:00
|
|
|
(for unsubscriptions) followed by the subscription body. Messages without a
|
|
|
|
sub/unsub prefix may also be sent, but have no effect on subscription status.
|
2011-06-19 16:39:27 +02:00
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_XSUB characteristics
|
|
|
|
Compatible peer sockets:: 'ZMQ_PUB', 'ZMQ_XPUB'
|
2012-02-15 16:49:40 +01:00
|
|
|
Direction:: Unidirectional
|
2011-06-19 16:39:27 +02:00
|
|
|
Send/receive pattern:: Receive messages, send subscriptions
|
|
|
|
Incoming routing strategy:: Fair-queued
|
|
|
|
Outgoing routing strategy:: N/A
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Drop
|
2011-06-19 16:39:27 +02:00
|
|
|
|
|
|
|
|
2010-05-28 00:49:13 +02:00
|
|
|
Pipeline pattern
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
The pipeline pattern is used for distributing data to _nodes_ arranged in
|
2010-05-31 17:21:12 +02:00
|
|
|
a pipeline. Data always flows down the pipeline, and each stage of the pipeline
|
|
|
|
is connected to at least one _node_. When a pipeline stage is connected to
|
2012-02-15 16:49:40 +01:00
|
|
|
multiple _nodes_ data is round-robined among all connected _nodes_.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2013-11-13 13:57:53 +01:00
|
|
|
The pipeline pattern is formally defined by http://rfc.zeromq.org/spec:30.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-09-04 16:00:26 +02:00
|
|
|
ZMQ_PUSH
|
|
|
|
^^^^^^^^
|
|
|
|
A socket of type 'ZMQ_PUSH' is used by a pipeline _node_ to send messages
|
2012-02-15 16:49:40 +01:00
|
|
|
to downstream pipeline _nodes_. Messages are round-robined to all connected
|
2010-05-28 00:49:13 +02:00
|
|
|
downstream _nodes_. The _zmq_recv()_ function is not implemented for this
|
|
|
|
socket type.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
When a 'ZMQ_PUSH' socket enters the 'mute' state due to having reached the
|
2010-09-04 16:00:26 +02:00
|
|
|
high water mark for all downstream _nodes_, or if there are no downstream
|
|
|
|
_nodes_ at all, then any linkzmq:zmq_send[3] operations on the socket shall
|
2012-10-27 02:43:19 +02:00
|
|
|
block until the mute state ends or at least one downstream _node_
|
2010-09-04 16:00:26 +02:00
|
|
|
becomes available for sending; messages are not discarded.
|
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
[horizontal]
|
2010-09-04 16:00:26 +02:00
|
|
|
.Summary of ZMQ_PUSH characteristics
|
|
|
|
Compatible peer sockets:: 'ZMQ_PULL'
|
2010-06-02 18:36:34 +02:00
|
|
|
Direction:: Unidirectional
|
|
|
|
Send/receive pattern:: Send only
|
|
|
|
Incoming routing strategy:: N/A
|
2012-02-15 16:49:40 +01:00
|
|
|
Outgoing routing strategy:: Round-robin
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Block
|
2010-06-02 18:36:34 +02:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-09-04 16:00:26 +02:00
|
|
|
ZMQ_PULL
|
|
|
|
^^^^^^^^
|
|
|
|
A socket of type 'ZMQ_PULL' is used by a pipeline _node_ to receive messages
|
|
|
|
from upstream pipeline _nodes_. Messages are fair-queued from among all
|
|
|
|
connected upstream _nodes_. The _zmq_send()_ function is not implemented for
|
|
|
|
this socket type.
|
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
[horizontal]
|
2010-09-04 16:00:26 +02:00
|
|
|
.Summary of ZMQ_PULL characteristics
|
|
|
|
Compatible peer sockets:: 'ZMQ_PUSH'
|
2010-06-02 18:36:34 +02:00
|
|
|
Direction:: Unidirectional
|
|
|
|
Send/receive pattern:: Receive only
|
|
|
|
Incoming routing strategy:: Fair-queued
|
|
|
|
Outgoing routing strategy:: N/A
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Block
|
2010-06-02 18:36:34 +02:00
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-05-28 00:49:13 +02:00
|
|
|
Exclusive pair pattern
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
2012-02-15 16:49:40 +01:00
|
|
|
The exclusive pair pattern is used to connect a peer to precisely one other
|
|
|
|
peer. This pattern is used for inter-thread communication across the inproc
|
|
|
|
transport.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2013-11-13 13:57:53 +01:00
|
|
|
The exclusive pair pattern is formally defined by http://rfc.zeromq.org/spec:31.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
ZMQ_PAIR
|
|
|
|
^^^^^^^^
|
2010-05-28 00:49:13 +02:00
|
|
|
A socket of type 'ZMQ_PAIR' can only be connected to a single peer at any one
|
|
|
|
time. No message routing or filtering is performed on messages sent over a
|
|
|
|
'ZMQ_PAIR' socket.
|
2010-03-09 18:47:31 +01:00
|
|
|
|
2012-10-27 02:43:19 +02:00
|
|
|
When a 'ZMQ_PAIR' socket enters the 'mute' state due to having reached the
|
2010-06-02 18:36:34 +02:00
|
|
|
high water mark for the connected peer, or if no peer is connected, then
|
|
|
|
any linkzmq:zmq_send[3] operations on the socket shall block until the peer
|
|
|
|
becomes available for sending; messages are not discarded.
|
|
|
|
|
2012-02-15 16:49:40 +01:00
|
|
|
NOTE: 'ZMQ_PAIR' sockets are designed for inter-thread communication across
|
|
|
|
the linkzmq:zmq_inproc[7] transport and do not implement functionality such
|
2015-05-22 20:46:28 +02:00
|
|
|
as auto-reconnection.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2010-06-02 18:36:34 +02:00
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_PAIR characteristics
|
|
|
|
Compatible peer sockets:: 'ZMQ_PAIR'
|
|
|
|
Direction:: Bidirectional
|
|
|
|
Send/receive pattern:: Unrestricted
|
|
|
|
Incoming routing strategy:: N/A
|
|
|
|
Outgoing routing strategy:: N/A
|
2012-10-27 02:43:19 +02:00
|
|
|
Action in mute state:: Block
|
2010-06-02 18:36:34 +02:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2013-06-27 20:47:34 +02:00
|
|
|
Native Pattern
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
The native pattern is used for communicating with TCP peers and allows
|
|
|
|
asynchronous requests and replies in either direction.
|
|
|
|
|
|
|
|
|
|
|
|
ZMQ_STREAM
|
|
|
|
^^^^^^^^^^
|
|
|
|
A socket of type 'ZMQ_STREAM' is used to send and receive TCP data from a
|
|
|
|
non-0MQ peer, when using the tcp:// transport. A 'ZMQ_STREAM' socket can
|
|
|
|
act as client and/or server, sending and/or receiving TCP data asynchronously.
|
|
|
|
|
|
|
|
When receiving TCP data, a 'ZMQ_STREAM' socket shall prepend a message part
|
|
|
|
containing the _identity_ of the originating peer to the message before passing
|
|
|
|
it to the application. Messages received are fair-queued from among all
|
|
|
|
connected peers.
|
|
|
|
|
|
|
|
When sending TCP data, a 'ZMQ_STREAM' socket shall remove the first part of the
|
|
|
|
message and use it to determine the _identity_ of the peer the message shall be
|
|
|
|
routed to, and unroutable messages shall cause an EHOSTUNREACH or EAGAIN error.
|
|
|
|
|
|
|
|
To open a connection to a server, use the zmq_connect call, and then fetch the
|
|
|
|
socket identity using the ZMQ_IDENTITY zmq_getsockopt call.
|
|
|
|
|
2014-04-27 00:16:59 +02:00
|
|
|
To close a specific connection, send the identity frame followed by a
|
|
|
|
zero-length message (see EXAMPLE section).
|
|
|
|
|
|
|
|
When a connection is made, a zero-length message will be received by the
|
|
|
|
application. Similarly, when the peer disconnects (or the connection is lost),
|
|
|
|
a zero-length message will be received by the application.
|
2013-06-27 20:47:34 +02:00
|
|
|
|
2013-12-23 16:06:18 +01:00
|
|
|
The ZMQ_SNDMORE flag is ignored on data frames. You must send one identity frame
|
2013-06-27 20:47:34 +02:00
|
|
|
followed by one data frame.
|
|
|
|
|
2013-12-23 16:06:18 +01:00
|
|
|
Also, please note that omitting the ZMQ_SNDMORE flag will prevent sending further
|
2013-09-04 20:58:07 +02:00
|
|
|
data (from any client) on the same socket.
|
|
|
|
|
2013-06-27 20:47:34 +02:00
|
|
|
[horizontal]
|
|
|
|
.Summary of ZMQ_STREAM characteristics
|
|
|
|
Compatible peer sockets:: none.
|
|
|
|
Direction:: Bidirectional
|
|
|
|
Send/receive pattern:: Unrestricted
|
|
|
|
Outgoing routing strategy:: See text
|
|
|
|
Incoming routing strategy:: Fair-queued
|
|
|
|
Action in mute state:: EAGAIN
|
|
|
|
|
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
RETURN VALUE
|
|
|
|
------------
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_socket()_ function shall return an opaque handle to the newly created
|
|
|
|
socket if successful. Otherwise, it shall return NULL and set 'errno' to one of
|
|
|
|
the values defined below.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
------
|
|
|
|
*EINVAL*::
|
2010-03-09 18:47:31 +01:00
|
|
|
The requested socket 'type' is invalid.
|
Added error checking (EFAULT) for null arguments
* Fixed zmq_term, zmq_socket, zmq_close, zmq_setsockopt,
* zmq_getsockopt, zmq_bind, zmq_connect, zmq_send,
* zmq_recv, zmq_poll, zmq_device, zmq_stopwatch_stop
* Updated Reference Manual for these methods
2010-08-08 11:43:32 +02:00
|
|
|
*EFAULT*::
|
2011-04-09 09:35:34 +02:00
|
|
|
The provided 'context' is invalid.
|
2011-04-18 09:11:45 +02:00
|
|
|
*EMFILE*::
|
|
|
|
The limit on the total number of open 0MQ sockets has been reached.
|
2011-02-09 15:32:15 +01:00
|
|
|
*ETERM*::
|
|
|
|
The context specified was terminated.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2013-09-04 20:58:07 +02:00
|
|
|
EXAMPLE
|
|
|
|
-------
|
|
|
|
.Creating a simple HTTP server using ZMQ_STREAM
|
|
|
|
----
|
|
|
|
void *ctx = zmq_ctx_new ();
|
|
|
|
assert (ctx);
|
|
|
|
/* Create ZMQ_STREAM socket */
|
|
|
|
void *socket = zmq_socket (ctx, ZMQ_STREAM);
|
|
|
|
assert (socket);
|
|
|
|
int rc = zmq_bind (socket, "tcp://*:8080");
|
|
|
|
assert (rc == 0);
|
|
|
|
/* Data structure to hold the ZMQ_STREAM ID */
|
|
|
|
uint8_t id [256];
|
|
|
|
size_t id_size = 256;
|
2014-02-24 18:27:03 +01:00
|
|
|
/* Data structure to hold the ZMQ_STREAM received data */
|
|
|
|
uint8_t raw [256];
|
|
|
|
size_t raw_size = 256;
|
2013-09-04 20:58:07 +02:00
|
|
|
while (1) {
|
|
|
|
/* Get HTTP request; ID frame and then request */
|
2014-02-24 18:27:03 +01:00
|
|
|
id_size = zmq_recv (socket, id, 256, 0);
|
2013-09-04 20:58:07 +02:00
|
|
|
assert (id_size > 0);
|
2014-02-24 18:27:03 +01:00
|
|
|
do {
|
|
|
|
raw_size = zmq_recv (socket, raw, 256, 0);
|
|
|
|
assert (raw_size >= 0);
|
|
|
|
} while (raw_size == 256);
|
2013-09-04 20:58:07 +02:00
|
|
|
/* Prepares the response */
|
|
|
|
char http_response [] =
|
|
|
|
"HTTP/1.0 200 OK\r\n"
|
|
|
|
"Content-Type: text/plain\r\n"
|
|
|
|
"\r\n"
|
|
|
|
"Hello, World!";
|
|
|
|
/* Sends the ID frame followed by the response */
|
|
|
|
zmq_send (socket, id, id_size, ZMQ_SNDMORE);
|
|
|
|
zmq_send (socket, http_response, strlen (http_response), ZMQ_SNDMORE);
|
|
|
|
/* Closes the connection by sending the ID frame followed by a zero response */
|
|
|
|
zmq_send (socket, id, id_size, ZMQ_SNDMORE);
|
|
|
|
zmq_send (socket, 0, 0, ZMQ_SNDMORE);
|
|
|
|
/* NOTE: If we don't use ZMQ_SNDMORE, then we won't be able to send more */
|
|
|
|
/* message to any client */
|
|
|
|
}
|
|
|
|
zmq_close (socket);
|
|
|
|
zmq_ctx_destroy (ctx);
|
|
|
|
----
|
|
|
|
|
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkzmq:zmq_init[3]
|
|
|
|
linkzmq:zmq_setsockopt[3]
|
|
|
|
linkzmq:zmq_bind[3]
|
|
|
|
linkzmq:zmq_connect[3]
|
|
|
|
linkzmq:zmq_send[3]
|
|
|
|
linkzmq:zmq_recv[3]
|
2012-02-15 16:49:40 +01:00
|
|
|
linkzmq:zmq_inproc[7]
|
2010-06-02 18:36:34 +02:00
|
|
|
linkzmq:zmq[7]
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2010-09-04 15:55:11 +02:00
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
-------
|
2013-04-11 18:53:02 +02:00
|
|
|
This page was written by the 0MQ community. To make a change please
|
|
|
|
read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.
|