change support python version
[platform/upstream/boost.git] / doc / html / boost_asio / reference / async_write_at.html
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
4 <title>async_write_at</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="../reference.html" title="Reference">
9 <link rel="prev" href="async_write/overload8.html" title="async_write (8 of 8 overloads)">
10 <link rel="next" href="async_write_at/overload1.html" title="async_write_at (1 of 4 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="async_write/overload8.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.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="async_write_at/overload1.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
24 </div>
25 <div class="section">
26 <div class="titlepage"><div><div><h3 class="title">
27 <a name="boost_asio.reference.async_write_at"></a><a class="link" href="async_write_at.html" title="async_write_at">async_write_at</a>
28 </h3></div></div></div>
29 <p>
30         <a class="indexterm" name="boost_asio.indexterm.async_write_at"></a> 
31 The <code class="computeroutput">async_write_at</code>
32         function is a composed asynchronous operation that writes a certain amount
33         of data at the specified offset before completion.
34       </p>
35 <p>
36         Start an asynchronous operation to write all of the supplied data at the
37         specified offset.
38       </p>
39 <pre class="programlisting">template&lt;
40     typename <a class="link" href="AsyncRandomAccessWriteDevice.html" title="Buffer-oriented asynchronous random-access write device requirements">AsyncRandomAccessWriteDevice</a>,
41     typename <a class="link" href="ConstBufferSequence.html" title="Constant buffer sequence requirements">ConstBufferSequence</a>,
42     typename <a class="link" href="WriteHandler.html" title="Write handler requirements">WriteHandler</a>&gt;
43 <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> <a class="link" href="async_write_at/overload1.html" title="async_write_at (1 of 4 overloads)">async_write_at</a>(
44     AsyncRandomAccessWriteDevice &amp; d,
45     uint64_t offset,
46     const ConstBufferSequence &amp; buffers,
47     WriteHandler &amp;&amp; handler);
48   <span class="emphasis"><em>&#187; <a class="link" href="async_write_at/overload1.html" title="async_write_at (1 of 4 overloads)">more...</a></em></span>
49 </pre>
50 <p>
51         Start an asynchronous operation to write a certain amount of data at the
52         specified offset.
53       </p>
54 <pre class="programlisting">template&lt;
55     typename <a class="link" href="AsyncRandomAccessWriteDevice.html" title="Buffer-oriented asynchronous random-access write device requirements">AsyncRandomAccessWriteDevice</a>,
56     typename <a class="link" href="ConstBufferSequence.html" title="Constant buffer sequence requirements">ConstBufferSequence</a>,
57     typename <a class="link" href="CompletionCondition.html" title="Completion condition requirements">CompletionCondition</a>,
58     typename <a class="link" href="WriteHandler.html" title="Write handler requirements">WriteHandler</a>&gt;
59 <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> <a class="link" href="async_write_at/overload2.html" title="async_write_at (2 of 4 overloads)">async_write_at</a>(
60     AsyncRandomAccessWriteDevice &amp; d,
61     uint64_t offset,
62     const ConstBufferSequence &amp; buffers,
63     CompletionCondition completion_condition,
64     WriteHandler &amp;&amp; handler);
65   <span class="emphasis"><em>&#187; <a class="link" href="async_write_at/overload2.html" title="async_write_at (2 of 4 overloads)">more...</a></em></span>
66 </pre>
67 <p>
68         Start an asynchronous operation to write all of the supplied data at the
69         specified offset.
70       </p>
71 <pre class="programlisting">template&lt;
72     typename <a class="link" href="AsyncRandomAccessWriteDevice.html" title="Buffer-oriented asynchronous random-access write device requirements">AsyncRandomAccessWriteDevice</a>,
73     typename Allocator,
74     typename <a class="link" href="WriteHandler.html" title="Write handler requirements">WriteHandler</a>&gt;
75 <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> <a class="link" href="async_write_at/overload3.html" title="async_write_at (3 of 4 overloads)">async_write_at</a>(
76     AsyncRandomAccessWriteDevice &amp; d,
77     uint64_t offset,
78     basic_streambuf&lt; Allocator &gt; &amp; b,
79     WriteHandler &amp;&amp; handler);
80   <span class="emphasis"><em>&#187; <a class="link" href="async_write_at/overload3.html" title="async_write_at (3 of 4 overloads)">more...</a></em></span>
81 </pre>
82 <p>
83         Start an asynchronous operation to write a certain amount of data at the
84         specified offset.
85       </p>
86 <pre class="programlisting">template&lt;
87     typename <a class="link" href="AsyncRandomAccessWriteDevice.html" title="Buffer-oriented asynchronous random-access write device requirements">AsyncRandomAccessWriteDevice</a>,
88     typename Allocator,
89     typename <a class="link" href="CompletionCondition.html" title="Completion condition requirements">CompletionCondition</a>,
90     typename <a class="link" href="WriteHandler.html" title="Write handler requirements">WriteHandler</a>&gt;
91 <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> <a class="link" href="async_write_at/overload4.html" title="async_write_at (4 of 4 overloads)">async_write_at</a>(
92     AsyncRandomAccessWriteDevice &amp; d,
93     uint64_t offset,
94     basic_streambuf&lt; Allocator &gt; &amp; b,
95     CompletionCondition completion_condition,
96     WriteHandler &amp;&amp; handler);
97   <span class="emphasis"><em>&#187; <a class="link" href="async_write_at/overload4.html" title="async_write_at (4 of 4 overloads)">more...</a></em></span>
98 </pre>
99 <h5>
100 <a name="boost_asio.reference.async_write_at.h0"></a>
101         <span class="phrase"><a name="boost_asio.reference.async_write_at.requirements"></a></span><a class="link" href="async_write_at.html#boost_asio.reference.async_write_at.requirements">Requirements</a>
102       </h5>
103 <p>
104         <span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/write_at.hpp</code>
105       </p>
106 <p>
107         <span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code>
108       </p>
109 </div>
110 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
111 <td align="left"></td>
112 <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
113         Distributed under the Boost Software License, Version 1.0. (See accompanying
114         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>)
115       </p>
116 </div></td>
117 </tr></table>
118 <hr>
119 <div class="spirit-nav">
120 <a accesskey="p" href="async_write/overload8.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.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="async_write_at/overload1.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
121 </div>
122 </body>
123 </html>