2010-02-10 16:18:46 +01:00
|
|
|
zmq_send(3)
|
|
|
|
===========
|
|
|
|
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2010-03-09 18:47:31 +01:00
|
|
|
zmq_send - send a message on a socket
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2010-03-09 18:47:31 +01:00
|
|
|
*int zmq_send (void '*socket', zmq_msg_t '*msg', int 'flags');*
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_send()_ function shall queue the message referenced by the 'msg'
|
|
|
|
argument to be sent to the socket referenced by the 'socket' argument. The
|
|
|
|
'flags' argument is a combination of the flags defined below:
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
*ZMQ_NOBLOCK*::
|
2010-03-09 18:47:31 +01:00
|
|
|
Specifies that the operation should be performed in non-blocking mode. If the
|
2010-06-02 18:36:34 +02:00
|
|
|
message cannot be queued on the 'socket', the _zmq_send()_ function shall fail
|
|
|
|
with 'errno' set to EAGAIN.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
2010-05-31 14:12:27 +02:00
|
|
|
*ZMQ_SNDMORE*::
|
|
|
|
Specifies that the message being sent is a multi-part message, and that further
|
|
|
|
message parts are to follow. Refer to the section regarding multi-part messages
|
|
|
|
below for a detailed description.
|
|
|
|
|
2010-03-09 18:47:31 +01:00
|
|
|
NOTE: A successful invocation of _zmq_send()_ does not indicate that the
|
|
|
|
message has been transmitted to the network, only that it has been queued on
|
2010-06-02 18:36:34 +02:00
|
|
|
the 'socket' and 0MQ has assumed responsibility for the message.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2010-05-31 14:12:27 +02:00
|
|
|
Multi-part messages
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2010-05-31 17:21:51 +02:00
|
|
|
A 0MQ message is composed of 1 or more message parts; each message part is an
|
|
|
|
independent 'zmq_msg_t' in its own right. 0MQ ensures atomic delivery of
|
|
|
|
messages; peers shall receive either all _message parts_ of a message or none
|
|
|
|
at all.
|
|
|
|
|
|
|
|
The total number of message parts is unlimited.
|
2010-05-31 14:12:27 +02:00
|
|
|
|
|
|
|
An application wishing to send a multi-part message does so by specifying the
|
|
|
|
'ZMQ_SNDMORE' flag to _zmq_send()_. The presence of this flag indicates to 0MQ
|
|
|
|
that the message being sent is a multi-part message and that more message parts
|
|
|
|
are to follow. When the application wishes to send the final message part it
|
|
|
|
does so by calling _zmq_send()_ without the 'ZMQ_SNDMORE' flag; this indicates
|
2010-05-31 14:18:37 +02:00
|
|
|
that no more message parts are to follow.
|
2010-05-31 14:12:27 +02:00
|
|
|
|
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
RETURN VALUE
|
|
|
|
------------
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_send()_ function shall return zero if successful. Otherwise it shall
|
2010-03-10 12:19:39 +01:00
|
|
|
return `-1` and set 'errno' to one of the values defined below.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
ERRORS
|
|
|
|
------
|
|
|
|
*EAGAIN*::
|
2010-06-02 18:36:34 +02:00
|
|
|
Non-blocking mode was requested and the message cannot be sent at the moment.
|
2010-02-10 16:18:46 +01:00
|
|
|
*ENOTSUP*::
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_send()_ operation is not supported by this socket type.
|
2010-02-10 16:18:46 +01:00
|
|
|
*EFSM*::
|
2010-03-09 18:47:31 +01:00
|
|
|
The _zmq_send()_ 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
|
|
|
|
socket types that switch between several states, such as ZMQ_REP. See the
|
|
|
|
_messaging patterns_ section of linkzmq:zmq_socket[3] 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.
|
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-01-17 14:51:01 +01:00
|
|
|
The provided 'socket' was not valid (NULL).
|
2010-09-08 08:39:27 +02:00
|
|
|
*EINTR*::
|
|
|
|
The operation was interrupted by delivery of a signal before the message was
|
|
|
|
sent.
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
EXAMPLE
|
|
|
|
-------
|
2010-03-09 18:47:31 +01:00
|
|
|
.Filling in a message and sending it to a socket
|
2010-02-10 16:18:46 +01:00
|
|
|
----
|
2010-03-09 18:47:31 +01:00
|
|
|
/* Create a new message, allocating 6 bytes for message content */
|
2010-02-10 16:18:46 +01:00
|
|
|
zmq_msg_t msg;
|
|
|
|
int rc = zmq_msg_init_size (&msg, 6);
|
|
|
|
assert (rc == 0);
|
2010-03-09 18:47:31 +01:00
|
|
|
/* Fill in message content with 'AAAAAA' */
|
2010-02-10 16:18:46 +01:00
|
|
|
memset (zmq_msg_data (&msg), 'A', 6);
|
2010-03-09 18:47:31 +01:00
|
|
|
/* Send the message to the socket */
|
|
|
|
rc = zmq_send (socket, &msg, 0);
|
2010-02-10 16:18:46 +01:00
|
|
|
assert (rc == 0);
|
|
|
|
----
|
|
|
|
|
2010-05-31 14:12:27 +02:00
|
|
|
.Sending a multi-part message
|
|
|
|
----
|
|
|
|
/* Send a multi-part message consisting of three parts to socket */
|
|
|
|
rc = zmq_send (socket, &part1, ZMQ_SNDMORE);
|
|
|
|
rc = zmq_send (socket, &part2, ZMQ_SNDMORE);
|
|
|
|
/* Final part; no more parts to follow */
|
|
|
|
rc = zmq_send (socket, &part3, 0);
|
|
|
|
----
|
|
|
|
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkzmq:zmq_recv[3]
|
2010-03-09 18:47:31 +01:00
|
|
|
linkzmq:zmq_socket[7]
|
|
|
|
linkzmq:zmq[7]
|
2010-02-10 16:18:46 +01:00
|
|
|
|
|
|
|
|
2010-09-04 15:55:11 +02:00
|
|
|
AUTHORS
|
|
|
|
-------
|
|
|
|
The 0MQ documentation was written by Martin Sustrik <sustrik@250bpm.com> and
|
|
|
|
Martin Lucina <mato@kotelna.sk>.
|