change support python version
[platform/upstream/boost.git] / doc / html / boost_asio / reference / async_write / overload3.html
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
4 <title>async_write (3 of 8 overloads)</title>
5 <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
6 <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7 <link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
8 <link rel="up" href="../async_write.html" title="async_write">
9 <link rel="prev" href="overload2.html" title="async_write (2 of 8 overloads)">
10 <link rel="next" href="overload4.html" title="async_write (4 of 8 overloads)">
11 </head>
12 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table cellpadding="2" width="100%"><tr>
14 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
15 <td align="center"><a href="../../../../../index.html">Home</a></td>
16 <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
17 <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18 <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19 <td align="center"><a href="../../../../../more/index.htm">More</a></td>
20 </tr></table>
21 <hr>
22 <div class="spirit-nav">
23 <a accesskey="p" href="overload2.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../async_write.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload4.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
24 </div>
25 <div class="section">
26 <div class="titlepage"><div><div><h4 class="title">
27 <a name="boost_asio.reference.async_write.overload3"></a><a class="link" href="overload3.html" title="async_write (3 of 8 overloads)">async_write
28         (3 of 8 overloads)</a>
29 </h4></div></div></div>
30 <p>
31           Start an asynchronous operation to write all of the supplied data to a
32           stream.
33         </p>
34 <pre class="programlisting">template&lt;
35     typename <a class="link" href="../AsyncWriteStream.html" title="Buffer-oriented asynchronous write stream requirements">AsyncWriteStream</a>,
36     typename <a class="link" href="../DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>,
37     typename <a class="link" href="../WriteHandler.html" title="Write handler requirements">WriteHandler</a>&gt;
38 <a class="link" href="../asynchronous_operations.html#boost_asio.reference.asynchronous_operations.automatic_deduction_of_initiating_function_return_type"><span class="emphasis"><em>DEDUCED</em></span></a> async_write(
39     AsyncWriteStream &amp; s,
40     DynamicBuffer_v1 &amp;&amp; buffers,
41     WriteHandler &amp;&amp; handler,
42     typename enable_if&lt; is_dynamic_buffer_v1&lt; typename decay&lt; DynamicBuffer_v1 &gt;::type &gt;::value &amp;&amp;!is_dynamic_buffer_v2&lt; typename decay&lt; DynamicBuffer_v1 &gt;::type &gt;::value &gt;::type *  = 0);
43 </pre>
44 <p>
45           This function is used to asynchronously write a certain number of bytes
46           of data to a stream. The function call always returns immediately. The
47           asynchronous operation will continue until one of the following conditions
48           is true:
49         </p>
50 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
51 <li class="listitem">
52               All of the data in the supplied dynamic buffer sequence has been written.
53             </li>
54 <li class="listitem">
55               An error occurred.
56             </li>
57 </ul></div>
58 <p>
59           This operation is implemented in terms of zero or more calls to the stream's
60           async_write_some function, and is known as a <span class="emphasis"><em>composed operation</em></span>.
61           The program must ensure that the stream performs no other write operations
62           (such as async_write, the stream's async_write_some function, or any other
63           composed operations that perform writes) until this operation completes.
64         </p>
65 <h6>
66 <a name="boost_asio.reference.async_write.overload3.h0"></a>
67           <span class="phrase"><a name="boost_asio.reference.async_write.overload3.parameters"></a></span><a class="link" href="overload3.html#boost_asio.reference.async_write.overload3.parameters">Parameters</a>
68         </h6>
69 <div class="variablelist">
70 <p class="title"><b></b></p>
71 <dl class="variablelist">
72 <dt><span class="term">s</span></dt>
73 <dd><p>
74                 The stream to which the data is to be written. The type must support
75                 the AsyncWriteStream concept.
76               </p></dd>
77 <dt><span class="term">buffers</span></dt>
78 <dd><p>
79                 The dynamic buffer sequence from which data will be written. Although
80                 the buffers object may be copied as necessary, ownership of the underlying
81                 memory blocks is retained by the caller, which must guarantee that
82                 they remain valid until the handler is called. Successfully written
83                 data is automatically consumed from the buffers.
84               </p></dd>
85 <dt><span class="term">handler</span></dt>
86 <dd>
87 <p>
88                 The handler to be called when the write operation completes. Copies
89                 will be made of the handler as required. The function signature of
90                 the handler must be:
91 </p>
92 <pre class="programlisting">void handler(
93   const boost::system::error_code&amp; error, // Result of operation.
94
95   std::size_t bytes_transferred           // Number of bytes written from the
96                                           // buffers. If an error occurred,
97                                           // this will be less than the sum
98                                           // of the buffer sizes.
99 );
100 </pre>
101 <p>
102                 Regardless of whether the asynchronous operation completes immediately
103                 or not, the handler will not be invoked from within this function.
104                 On immediate completion, invocation of the handler will be performed
105                 in a manner equivalent to using <a class="link" href="../post.html" title="post"><code class="computeroutput">post</code></a>.
106               </p>
107 </dd>
108 </dl>
109 </div>
110 </div>
111 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
112 <td align="left"></td>
113 <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
114         Distributed under the Boost Software License, Version 1.0. (See accompanying
115         file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
116       </p>
117 </div></td>
118 </tr></table>
119 <hr>
120 <div class="spirit-nav">
121 <a accesskey="p" href="overload2.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../async_write.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload4.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
122 </div>
123 </body>
124 </html>