~ubuntu-branches/ubuntu/trusty/zeromq3/trusty

« back to all changes in this revision

Viewing changes to doc/zmq_send.html

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-06-12 10:53:58 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120612105358-irh7e8ivwc4566fi
Tags: 3.2.0~rc1+dfsg-1
* New upstream RC release
* Use repack.{local,stub} instead of get-orig-source rule
* Add 01_fix-unused-variable-error.patch
* Remove build dependency on uuid-dev (no more needed)
* Add 02_check-ifdef-SO_NOSIGPIPE.patch to fix kfreebsd build
* Add 03_fix-test_shutdown_stress-segfault.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4
4
<head>
5
5
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
6
 
<meta name="generator" content="AsciiDoc 8.6.3" />
 
6
<meta name="generator" content="AsciiDoc 8.6.4" />
7
7
<title>zmq_send(3)</title>
8
8
<style type="text/css">
9
9
/* Sans-serif font. */
394
394
  font-size: 0.9em;
395
395
}
396
396
 
 
397
span.aqua { color: aqua; }
 
398
span.black { color: black; }
 
399
span.blue { color: blue; }
 
400
span.fuchsia { color: fuchsia; }
 
401
span.gray { color: gray; }
 
402
span.green { color: green; }
 
403
span.lime { color: lime; }
 
404
span.maroon { color: maroon; }
 
405
span.navy { color: navy; }
 
406
span.olive { color: olive; }
 
407
span.purple { color: purple; }
 
408
span.red { color: red; }
 
409
span.silver { color: silver; }
 
410
span.teal { color: teal; }
 
411
span.white { color: white; }
 
412
span.yellow { color: yellow; }
 
413
 
 
414
span.aqua-background { background: aqua; }
 
415
span.black-background { background: black; }
 
416
span.blue-background { background: blue; }
 
417
span.fuchsia-background { background: fuchsia; }
 
418
span.gray-background { background: gray; }
 
419
span.green-background { background: green; }
 
420
span.lime-background { background: lime; }
 
421
span.maroon-background { background: maroon; }
 
422
span.navy-background { background: navy; }
 
423
span.olive-background { background: olive; }
 
424
span.purple-background { background: purple; }
 
425
span.red-background { background: red; }
 
426
span.silver-background { background: silver; }
 
427
span.teal-background { background: teal; }
 
428
span.white-background { background: white; }
 
429
span.yellow-background { background: yellow; }
 
430
 
 
431
span.big { font-size: 2em; }
 
432
span.small { font-size: 0.6em; }
397
433
/* Overrides for manpage documents */
398
434
h1 {
399
435
  padding-top: 0.5em;
555
591
<h2>NAME</h2>
556
592
<div class="sectionbody">
557
593
<p>zmq_send -
558
 
   send a message part  on a socket
 
594
   send a message part on a socket
559
595
</p>
560
596
</div>
561
597
</div>
606
642
</div>
607
643
<div class="sect2">
608
644
<h3 id="_multi_part_messages">Multi-part messages</h3>
609
 
<div class="paragraph"><p>A ØMQ message is composed of 1 or more message parts. Each message
610
 
part is an independent <em>zmq_msg_t</em> in its own right. ØMQ ensures atomic
611
 
delivery of messages; peers shall receive either all <em>message parts</em> of a
 
645
<div class="paragraph"><p>A ØMQ message is composed of 1 or more message parts. ØMQ ensures atomic
 
646
delivery of messages: peers shall receive either all <em>message parts</em> of a
612
647
message or none at all. The total number of message parts is unlimited except
613
648
by available memory.</p></div>
614
 
<div class="paragraph"><p>An application that sends multipart messages must use the <em>ZMQ_SNDMORE</em> flag
615
 
when sending each data part except the final one.</p></div>
 
649
<div class="paragraph"><p>An application that sends multi-part messages must use the <em>ZMQ_SNDMORE</em> flag
 
650
when sending each message part except the final one.</p></div>
616
651
</div>
617
652
</div>
618
653
</div>
680
715
sent.
681
716
</p>
682
717
</dd>
683
 
<dt class="hdlist1">
684
 
<strong>ECANTROUTE</strong>
685
 
</dt>
686
 
<dd>
687
 
<p>
688
 
Message cannot be routed to the destination specified as the peer is either
689
 
dead or disconnected. This error makes sense only with ZMQ_ROUTER socket.
690
 
</p>
691
 
</dd>
692
718
</dl></div>
693
719
</div>
694
720
</div>
722
748
<div class="sect1">
723
749
<h2 id="_authors">AUTHORS</h2>
724
750
<div class="sectionbody">
725
 
<div class="paragraph"><p>+This man page was written by Martin Sustrik &lt;<a href="mailto:sustrik@250bpm.com">sustrik@250bpm.com</a>&gt;, Martin
726
 
+Lucina &lt;<a href="mailto:martin@lucina.net">martin@lucina.net</a>&gt; and Pieter Hintjens &lt;<a href="mailto:ph@imatix.com">ph@imatix.com</a>&gt;.</p></div>
 
751
<div class="paragraph"><p>This ØMQ manual page was written by Martin Sustrik &lt;<a href="mailto:sustrik@250bpm.com">sustrik@250bpm.com</a>&gt; and
 
752
Martin Lucina &lt;<a href="mailto:mato@kotelna.sk">mato@kotelna.sk</a>&gt;, and Pieter Hintjens &lt;<a href="mailto:ph@imatix.com">ph@imatix.com</a>&gt;.</p></div>
727
753
</div>
728
754
</div>
729
755
</div>
730
756
<div id="footnotes"><hr /></div>
731
757
<div id="footer">
732
758
<div id="footer-text">
733
 
ØMQ 3.1.0<br />
734
 
Last updated 2011-12-18 11:17:56 CET
 
759
ØMQ 3.2.0<br />
 
760
Last updated 2012-06-05 09:39:30 CEST
735
761
</div>
736
762
</div>
737
763
</body>