2023-10-21 01:50:38 +02:00
|
|
|
= zmq_recv(3)
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== NAME
|
2011-09-03 09:02:56 +02:00
|
|
|
zmq_recv - receive a message part from a socket
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SYNOPSIS
|
2011-07-11 08:34:20 +02:00
|
|
|
*int zmq_recv (void '*socket', void '*buf', size_t 'len', int 'flags');*
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== DESCRIPTION
|
2011-07-11 08:34:20 +02:00
|
|
|
The _zmq_recv()_ function shall receive a message from the socket referenced
|
|
|
|
by the 'socket' argument and store it in the buffer referenced by the 'buf'
|
|
|
|
argument. Any bytes exceeding the length specified by the 'len' argument shall
|
|
|
|
be truncated. If there are no messages available on the specified 'socket'
|
|
|
|
the _zmq_recv()_ function shall block until the request can be satisfied.
|
2016-02-06 14:11:21 +01:00
|
|
|
The 'flags' argument is a combination of the flags defined below: The 'buf'
|
|
|
|
argument may be null if len is zero.
|
2009-11-22 16:51:21 +01:00
|
|
|
|
2011-03-26 10:38:40 +01:00
|
|
|
*ZMQ_DONTWAIT*::
|
2010-03-09 18:47:31 +01:00
|
|
|
Specifies that the operation should be performed in non-blocking mode. If there
|
2011-07-11 08:34:20 +02:00
|
|
|
are no messages available on the specified 'socket', the _zmq_recv()_
|
|
|
|
function shall fail with 'errno' set to EAGAIN.
|
2009-11-22 16:51:21 +01:00
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2010-05-31 14:12:27 +02:00
|
|
|
Multi-part messages
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2012-02-15 17:06:04 +01:00
|
|
|
A 0MQ message is composed of 1 or more message parts. 0MQ ensures atomic
|
|
|
|
delivery of messages: peers shall receive either all _message parts_ of a
|
2011-09-03 09:02:56 +02:00
|
|
|
message or none at all. The total number of message parts is unlimited except
|
|
|
|
by available memory.
|
2010-05-31 14:12:27 +02:00
|
|
|
|
2012-02-15 17:06:04 +01:00
|
|
|
An application that processes multi-part messages must use the _ZMQ_RCVMORE_
|
2023-10-21 01:50:38 +02:00
|
|
|
xref:zmq_getsockopt.adoc[zmq_getsockopt] option after calling _zmq_recv()_ to determine if
|
2011-11-01 14:09:54 +01:00
|
|
|
there are further parts to receive.
|
2010-05-31 14:12:27 +02:00
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== RETURN VALUE
|
2011-07-11 08:34:20 +02:00
|
|
|
The _zmq_recv()_ function shall return number of bytes in the message
|
|
|
|
if successful. Note that the value can exceed the value of the 'len' parameter
|
|
|
|
in case the message was truncated. If not successful the function shall return
|
|
|
|
`-1` and set 'errno' to one of the values defined below.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== ERRORS
|
2010-02-10 16:18:46 +01:00
|
|
|
*EAGAIN*::
|
2023-10-21 01:50:38 +02:00
|
|
|
Either the timeout set via the socket-option ZMQ_RCVTIMEO (see xref:zmq_setsockopt.adoc[zmq_setsockopt])
|
2020-01-25 20:04:59 +01:00
|
|
|
has been reached (flag ZMQ_DONTWAIT not set) without being able to read a message
|
|
|
|
from the socket or there are no messages available at the moment (flag ZMQ_DONTWAIT set)
|
|
|
|
and the operation would block.
|
2010-02-10 16:18:46 +01:00
|
|
|
*ENOTSUP*::
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_recv()_ operation is not supported by this socket type.
|
2010-02-10 16:18:46 +01:00
|
|
|
*EFSM*::
|
2011-07-11 08:34:20 +02:00
|
|
|
The _zmq_recv()_ operation cannot be performed on this socket at the moment
|
|
|
|
due to the socket not being in the appropriate state. This error may occur with
|
2010-03-09 18:47:31 +01:00
|
|
|
socket types that switch between several states, such as ZMQ_REP. See the
|
2023-10-21 01:50:38 +02:00
|
|
|
_messaging patterns_ section of xref:zmq_socket.adoc[zmq_socket] for more information.
|
2010-04-12 09:25:04 +02:00
|
|
|
*ETERM*::
|
2010-05-31 14:12:27 +02:00
|
|
|
The 0MQ 'context' associated with the specified 'socket' was terminated.
|
2011-04-09 09:35:34 +02:00
|
|
|
*ENOTSOCK*::
|
|
|
|
The provided 'socket' was invalid.
|
2010-09-08 08:39:27 +02:00
|
|
|
*EINTR*::
|
|
|
|
The operation was interrupted by delivery of a signal before a message was
|
|
|
|
available.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== EXAMPLE
|
2010-03-09 18:47:31 +01:00
|
|
|
.Receiving a message from a socket
|
2010-02-10 16:18:46 +01:00
|
|
|
----
|
2011-07-11 08:34:20 +02:00
|
|
|
char buf [256];
|
|
|
|
nbytes = zmq_recv (socket, buf, 256, 0);
|
|
|
|
assert (nbytes != -1);
|
2010-05-31 14:12:27 +02:00
|
|
|
----
|
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SEE ALSO
|
|
|
|
xref:zmq_send.adoc[zmq_send]
|
|
|
|
xref:zmq_getsockopt.adoc[zmq_getsockopt]
|
|
|
|
xref:zmq_setsockopt.adoc[zmq_setsockopt]
|
|
|
|
xref:zmq_socket.adoc[zmq_socket]
|
|
|
|
xref:zmq.adoc[zmq]
|
2010-02-10 16:18:46 +01: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
|
|
|
|
read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.
|