write.hpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. //
  2. // write.hpp
  3. // ~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_WRITE_HPP
  11. #define BOOST_ASIO_WRITE_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <cstddef>
  17. #include <boost/asio/async_result.hpp>
  18. #include <boost/asio/basic_streambuf_fwd.hpp>
  19. #include <boost/asio/error.hpp>
  20. #include <boost/asio/detail/push_options.hpp>
  21. namespace boost {
  22. namespace asio {
  23. /**
  24. * @defgroup write boost::asio::write
  25. *
  26. * @brief Write a certain amount of data to a stream before returning.
  27. */
  28. /*@{*/
  29. /// Write all of the supplied data to a stream before returning.
  30. /**
  31. * This function is used to write a certain number of bytes of data to a stream.
  32. * The call will block until one of the following conditions is true:
  33. *
  34. * @li All of the data in the supplied buffers has been written. That is, the
  35. * bytes transferred is equal to the sum of the buffer sizes.
  36. *
  37. * @li An error occurred.
  38. *
  39. * This operation is implemented in terms of zero or more calls to the stream's
  40. * write_some function.
  41. *
  42. * @param s The stream to which the data is to be written. The type must support
  43. * the SyncWriteStream concept.
  44. *
  45. * @param buffers One or more buffers containing the data to be written. The sum
  46. * of the buffer sizes indicates the maximum number of bytes to write to the
  47. * stream.
  48. *
  49. * @returns The number of bytes transferred.
  50. *
  51. * @throws boost::system::system_error Thrown on failure.
  52. *
  53. * @par Example
  54. * To write a single data buffer use the @ref buffer function as follows:
  55. * @code boost::asio::write(s, boost::asio::buffer(data, size)); @endcode
  56. * See the @ref buffer documentation for information on writing multiple
  57. * buffers in one go, and how to use it with arrays, boost::array or
  58. * std::vector.
  59. *
  60. * @note This overload is equivalent to calling:
  61. * @code boost::asio::write(
  62. * s, buffers,
  63. * boost::asio::transfer_all()); @endcode
  64. */
  65. template <typename SyncWriteStream, typename ConstBufferSequence>
  66. std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers);
  67. /// Write all of the supplied data to a stream before returning.
  68. /**
  69. * This function is used to write a certain number of bytes of data to a stream.
  70. * The call will block until one of the following conditions is true:
  71. *
  72. * @li All of the data in the supplied buffers has been written. That is, the
  73. * bytes transferred is equal to the sum of the buffer sizes.
  74. *
  75. * @li An error occurred.
  76. *
  77. * This operation is implemented in terms of zero or more calls to the stream's
  78. * write_some function.
  79. *
  80. * @param s The stream to which the data is to be written. The type must support
  81. * the SyncWriteStream concept.
  82. *
  83. * @param buffers One or more buffers containing the data to be written. The sum
  84. * of the buffer sizes indicates the maximum number of bytes to write to the
  85. * stream.
  86. *
  87. * @param ec Set to indicate what error occurred, if any.
  88. *
  89. * @returns The number of bytes transferred.
  90. *
  91. * @par Example
  92. * To write a single data buffer use the @ref buffer function as follows:
  93. * @code boost::asio::write(s, boost::asio::buffer(data, size), ec); @endcode
  94. * See the @ref buffer documentation for information on writing multiple
  95. * buffers in one go, and how to use it with arrays, boost::array or
  96. * std::vector.
  97. *
  98. * @note This overload is equivalent to calling:
  99. * @code boost::asio::write(
  100. * s, buffers,
  101. * boost::asio::transfer_all(), ec); @endcode
  102. */
  103. template <typename SyncWriteStream, typename ConstBufferSequence>
  104. std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers,
  105. boost::system::error_code& ec);
  106. /// Write a certain amount of data to a stream before returning.
  107. /**
  108. * This function is used to write a certain number of bytes of data to a stream.
  109. * The call will block until one of the following conditions is true:
  110. *
  111. * @li All of the data in the supplied buffers has been written. That is, the
  112. * bytes transferred is equal to the sum of the buffer sizes.
  113. *
  114. * @li The completion_condition function object returns 0.
  115. *
  116. * This operation is implemented in terms of zero or more calls to the stream's
  117. * write_some function.
  118. *
  119. * @param s The stream to which the data is to be written. The type must support
  120. * the SyncWriteStream concept.
  121. *
  122. * @param buffers One or more buffers containing the data to be written. The sum
  123. * of the buffer sizes indicates the maximum number of bytes to write to the
  124. * stream.
  125. *
  126. * @param completion_condition The function object to be called to determine
  127. * whether the write operation is complete. The signature of the function object
  128. * must be:
  129. * @code std::size_t completion_condition(
  130. * // Result of latest write_some operation.
  131. * const boost::system::error_code& error,
  132. *
  133. * // Number of bytes transferred so far.
  134. * std::size_t bytes_transferred
  135. * ); @endcode
  136. * A return value of 0 indicates that the write operation is complete. A
  137. * non-zero return value indicates the maximum number of bytes to be written on
  138. * the next call to the stream's write_some function.
  139. *
  140. * @returns The number of bytes transferred.
  141. *
  142. * @throws boost::system::system_error Thrown on failure.
  143. *
  144. * @par Example
  145. * To write a single data buffer use the @ref buffer function as follows:
  146. * @code boost::asio::write(s, boost::asio::buffer(data, size),
  147. * boost::asio::transfer_at_least(32)); @endcode
  148. * See the @ref buffer documentation for information on writing multiple
  149. * buffers in one go, and how to use it with arrays, boost::array or
  150. * std::vector.
  151. */
  152. template <typename SyncWriteStream, typename ConstBufferSequence,
  153. typename CompletionCondition>
  154. std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers,
  155. CompletionCondition completion_condition);
  156. /// Write a certain amount of data to a stream before returning.
  157. /**
  158. * This function is used to write a certain number of bytes of data to a stream.
  159. * The call will block until one of the following conditions is true:
  160. *
  161. * @li All of the data in the supplied buffers has been written. That is, the
  162. * bytes transferred is equal to the sum of the buffer sizes.
  163. *
  164. * @li The completion_condition function object returns 0.
  165. *
  166. * This operation is implemented in terms of zero or more calls to the stream's
  167. * write_some function.
  168. *
  169. * @param s The stream to which the data is to be written. The type must support
  170. * the SyncWriteStream concept.
  171. *
  172. * @param buffers One or more buffers containing the data to be written. The sum
  173. * of the buffer sizes indicates the maximum number of bytes to write to the
  174. * stream.
  175. *
  176. * @param completion_condition The function object to be called to determine
  177. * whether the write operation is complete. The signature of the function object
  178. * must be:
  179. * @code std::size_t completion_condition(
  180. * // Result of latest write_some operation.
  181. * const boost::system::error_code& error,
  182. *
  183. * // Number of bytes transferred so far.
  184. * std::size_t bytes_transferred
  185. * ); @endcode
  186. * A return value of 0 indicates that the write operation is complete. A
  187. * non-zero return value indicates the maximum number of bytes to be written on
  188. * the next call to the stream's write_some function.
  189. *
  190. * @param ec Set to indicate what error occurred, if any.
  191. *
  192. * @returns The number of bytes written. If an error occurs, returns the total
  193. * number of bytes successfully transferred prior to the error.
  194. */
  195. template <typename SyncWriteStream, typename ConstBufferSequence,
  196. typename CompletionCondition>
  197. std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers,
  198. CompletionCondition completion_condition, boost::system::error_code& ec);
  199. #if !defined(BOOST_ASIO_NO_IOSTREAM)
  200. /// Write all of the supplied data to a stream before returning.
  201. /**
  202. * This function is used to write a certain number of bytes of data to a stream.
  203. * The call will block until one of the following conditions is true:
  204. *
  205. * @li All of the data in the supplied basic_streambuf has been written.
  206. *
  207. * @li An error occurred.
  208. *
  209. * This operation is implemented in terms of zero or more calls to the stream's
  210. * write_some function.
  211. *
  212. * @param s The stream to which the data is to be written. The type must support
  213. * the SyncWriteStream concept.
  214. *
  215. * @param b The basic_streambuf object from which data will be written.
  216. *
  217. * @returns The number of bytes transferred.
  218. *
  219. * @throws boost::system::system_error Thrown on failure.
  220. *
  221. * @note This overload is equivalent to calling:
  222. * @code boost::asio::write(
  223. * s, b,
  224. * boost::asio::transfer_all()); @endcode
  225. */
  226. template <typename SyncWriteStream, typename Allocator>
  227. std::size_t write(SyncWriteStream& s, basic_streambuf<Allocator>& b);
  228. /// Write all of the supplied data to a stream before returning.
  229. /**
  230. * This function is used to write a certain number of bytes of data to a stream.
  231. * The call will block until one of the following conditions is true:
  232. *
  233. * @li All of the data in the supplied basic_streambuf has been written.
  234. *
  235. * @li An error occurred.
  236. *
  237. * This operation is implemented in terms of zero or more calls to the stream's
  238. * write_some function.
  239. *
  240. * @param s The stream to which the data is to be written. The type must support
  241. * the SyncWriteStream concept.
  242. *
  243. * @param b The basic_streambuf object from which data will be written.
  244. *
  245. * @param ec Set to indicate what error occurred, if any.
  246. *
  247. * @returns The number of bytes transferred.
  248. *
  249. * @note This overload is equivalent to calling:
  250. * @code boost::asio::write(
  251. * s, b,
  252. * boost::asio::transfer_all(), ec); @endcode
  253. */
  254. template <typename SyncWriteStream, typename Allocator>
  255. std::size_t write(SyncWriteStream& s, basic_streambuf<Allocator>& b,
  256. boost::system::error_code& ec);
  257. /// Write a certain amount of data to a stream before returning.
  258. /**
  259. * This function is used to write a certain number of bytes of data to a stream.
  260. * The call will block until one of the following conditions is true:
  261. *
  262. * @li All of the data in the supplied basic_streambuf has been written.
  263. *
  264. * @li The completion_condition function object returns 0.
  265. *
  266. * This operation is implemented in terms of zero or more calls to the stream's
  267. * write_some function.
  268. *
  269. * @param s The stream to which the data is to be written. The type must support
  270. * the SyncWriteStream concept.
  271. *
  272. * @param b The basic_streambuf object from which data will be written.
  273. *
  274. * @param completion_condition The function object to be called to determine
  275. * whether the write operation is complete. The signature of the function object
  276. * must be:
  277. * @code std::size_t completion_condition(
  278. * // Result of latest write_some operation.
  279. * const boost::system::error_code& error,
  280. *
  281. * // Number of bytes transferred so far.
  282. * std::size_t bytes_transferred
  283. * ); @endcode
  284. * A return value of 0 indicates that the write operation is complete. A
  285. * non-zero return value indicates the maximum number of bytes to be written on
  286. * the next call to the stream's write_some function.
  287. *
  288. * @returns The number of bytes transferred.
  289. *
  290. * @throws boost::system::system_error Thrown on failure.
  291. */
  292. template <typename SyncWriteStream, typename Allocator,
  293. typename CompletionCondition>
  294. std::size_t write(SyncWriteStream& s, basic_streambuf<Allocator>& b,
  295. CompletionCondition completion_condition);
  296. /// Write a certain amount of data to a stream before returning.
  297. /**
  298. * This function is used to write a certain number of bytes of data to a stream.
  299. * The call will block until one of the following conditions is true:
  300. *
  301. * @li All of the data in the supplied basic_streambuf has been written.
  302. *
  303. * @li The completion_condition function object returns 0.
  304. *
  305. * This operation is implemented in terms of zero or more calls to the stream's
  306. * write_some function.
  307. *
  308. * @param s The stream to which the data is to be written. The type must support
  309. * the SyncWriteStream concept.
  310. *
  311. * @param b The basic_streambuf object from which data will be written.
  312. *
  313. * @param completion_condition The function object to be called to determine
  314. * whether the write operation is complete. The signature of the function object
  315. * must be:
  316. * @code std::size_t completion_condition(
  317. * // Result of latest write_some operation.
  318. * const boost::system::error_code& error,
  319. *
  320. * // Number of bytes transferred so far.
  321. * std::size_t bytes_transferred
  322. * ); @endcode
  323. * A return value of 0 indicates that the write operation is complete. A
  324. * non-zero return value indicates the maximum number of bytes to be written on
  325. * the next call to the stream's write_some function.
  326. *
  327. * @param ec Set to indicate what error occurred, if any.
  328. *
  329. * @returns The number of bytes written. If an error occurs, returns the total
  330. * number of bytes successfully transferred prior to the error.
  331. */
  332. template <typename SyncWriteStream, typename Allocator,
  333. typename CompletionCondition>
  334. std::size_t write(SyncWriteStream& s, basic_streambuf<Allocator>& b,
  335. CompletionCondition completion_condition, boost::system::error_code& ec);
  336. #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
  337. /*@}*/
  338. /**
  339. * @defgroup async_write boost::asio::async_write
  340. *
  341. * @brief Start an asynchronous operation to write a certain amount of data to a
  342. * stream.
  343. */
  344. /*@{*/
  345. /// Start an asynchronous operation to write all of the supplied data to a
  346. /// stream.
  347. /**
  348. * This function is used to asynchronously write a certain number of bytes of
  349. * data to a stream. The function call always returns immediately. The
  350. * asynchronous operation will continue until one of the following conditions
  351. * is true:
  352. *
  353. * @li All of the data in the supplied buffers has been written. That is, the
  354. * bytes transferred is equal to the sum of the buffer sizes.
  355. *
  356. * @li An error occurred.
  357. *
  358. * This operation is implemented in terms of zero or more calls to the stream's
  359. * async_write_some function, and is known as a <em>composed operation</em>. The
  360. * program must ensure that the stream performs no other write operations (such
  361. * as async_write, the stream's async_write_some function, or any other composed
  362. * operations that perform writes) until this operation completes.
  363. *
  364. * @param s The stream to which the data is to be written. The type must support
  365. * the AsyncWriteStream concept.
  366. *
  367. * @param buffers One or more buffers containing the data to be written.
  368. * Although the buffers object may be copied as necessary, ownership of the
  369. * underlying memory blocks is retained by the caller, which must guarantee
  370. * that they remain valid until the handler is called.
  371. *
  372. * @param handler The handler to be called when the write operation completes.
  373. * Copies will be made of the handler as required. The function signature of
  374. * the handler must be:
  375. * @code void handler(
  376. * const boost::system::error_code& error, // Result of operation.
  377. *
  378. * std::size_t bytes_transferred // Number of bytes written from the
  379. * // buffers. If an error occurred,
  380. * // this will be less than the sum
  381. * // of the buffer sizes.
  382. * ); @endcode
  383. * Regardless of whether the asynchronous operation completes immediately or
  384. * not, the handler will not be invoked from within this function. Invocation of
  385. * the handler will be performed in a manner equivalent to using
  386. * boost::asio::io_service::post().
  387. *
  388. * @par Example
  389. * To write a single data buffer use the @ref buffer function as follows:
  390. * @code
  391. * boost::asio::async_write(s, boost::asio::buffer(data, size), handler);
  392. * @endcode
  393. * See the @ref buffer documentation for information on writing multiple
  394. * buffers in one go, and how to use it with arrays, boost::array or
  395. * std::vector.
  396. */
  397. template <typename AsyncWriteStream, typename ConstBufferSequence,
  398. typename WriteHandler>
  399. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  400. void (boost::system::error_code, std::size_t))
  401. async_write(AsyncWriteStream& s, const ConstBufferSequence& buffers,
  402. BOOST_ASIO_MOVE_ARG(WriteHandler) handler);
  403. /// Start an asynchronous operation to write a certain amount of data to a
  404. /// stream.
  405. /**
  406. * This function is used to asynchronously write a certain number of bytes of
  407. * data to a stream. The function call always returns immediately. The
  408. * asynchronous operation will continue until one of the following conditions
  409. * is true:
  410. *
  411. * @li All of the data in the supplied buffers has been written. That is, the
  412. * bytes transferred is equal to the sum of the buffer sizes.
  413. *
  414. * @li The completion_condition function object returns 0.
  415. *
  416. * This operation is implemented in terms of zero or more calls to the stream's
  417. * async_write_some function, and is known as a <em>composed operation</em>. The
  418. * program must ensure that the stream performs no other write operations (such
  419. * as async_write, the stream's async_write_some function, or any other composed
  420. * operations that perform writes) until this operation completes.
  421. *
  422. * @param s The stream to which the data is to be written. The type must support
  423. * the AsyncWriteStream concept.
  424. *
  425. * @param buffers One or more buffers containing the data to be written.
  426. * Although the buffers object may be copied as necessary, ownership of the
  427. * underlying memory blocks is retained by the caller, which must guarantee
  428. * that they remain valid until the handler is called.
  429. *
  430. * @param completion_condition The function object to be called to determine
  431. * whether the write operation is complete. The signature of the function object
  432. * must be:
  433. * @code std::size_t completion_condition(
  434. * // Result of latest async_write_some operation.
  435. * const boost::system::error_code& error,
  436. *
  437. * // Number of bytes transferred so far.
  438. * std::size_t bytes_transferred
  439. * ); @endcode
  440. * A return value of 0 indicates that the write operation is complete. A
  441. * non-zero return value indicates the maximum number of bytes to be written on
  442. * the next call to the stream's async_write_some function.
  443. *
  444. * @param handler The handler to be called when the write operation completes.
  445. * Copies will be made of the handler as required. The function signature of the
  446. * handler must be:
  447. * @code void handler(
  448. * const boost::system::error_code& error, // Result of operation.
  449. *
  450. * std::size_t bytes_transferred // Number of bytes written from the
  451. * // buffers. If an error occurred,
  452. * // this will be less than the sum
  453. * // of the buffer sizes.
  454. * ); @endcode
  455. * Regardless of whether the asynchronous operation completes immediately or
  456. * not, the handler will not be invoked from within this function. Invocation of
  457. * the handler will be performed in a manner equivalent to using
  458. * boost::asio::io_service::post().
  459. *
  460. * @par Example
  461. * To write a single data buffer use the @ref buffer function as follows:
  462. * @code boost::asio::async_write(s,
  463. * boost::asio::buffer(data, size),
  464. * boost::asio::transfer_at_least(32),
  465. * handler); @endcode
  466. * See the @ref buffer documentation for information on writing multiple
  467. * buffers in one go, and how to use it with arrays, boost::array or
  468. * std::vector.
  469. */
  470. template <typename AsyncWriteStream, typename ConstBufferSequence,
  471. typename CompletionCondition, typename WriteHandler>
  472. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  473. void (boost::system::error_code, std::size_t))
  474. async_write(AsyncWriteStream& s, const ConstBufferSequence& buffers,
  475. CompletionCondition completion_condition,
  476. BOOST_ASIO_MOVE_ARG(WriteHandler) handler);
  477. #if !defined(BOOST_ASIO_NO_IOSTREAM)
  478. /// Start an asynchronous operation to write all of the supplied data to a
  479. /// stream.
  480. /**
  481. * This function is used to asynchronously write a certain number of bytes of
  482. * data to a stream. The function call always returns immediately. The
  483. * asynchronous operation will continue until one of the following conditions
  484. * is true:
  485. *
  486. * @li All of the data in the supplied basic_streambuf has been written.
  487. *
  488. * @li An error occurred.
  489. *
  490. * This operation is implemented in terms of zero or more calls to the stream's
  491. * async_write_some function, and is known as a <em>composed operation</em>. The
  492. * program must ensure that the stream performs no other write operations (such
  493. * as async_write, the stream's async_write_some function, or any other composed
  494. * operations that perform writes) until this operation completes.
  495. *
  496. * @param s The stream to which the data is to be written. The type must support
  497. * the AsyncWriteStream concept.
  498. *
  499. * @param b A basic_streambuf object from which data will be written. Ownership
  500. * of the streambuf is retained by the caller, which must guarantee that it
  501. * remains valid until the handler is called.
  502. *
  503. * @param handler The handler to be called when the write operation completes.
  504. * Copies will be made of the handler as required. The function signature of the
  505. * handler must be:
  506. * @code void handler(
  507. * const boost::system::error_code& error, // Result of operation.
  508. *
  509. * std::size_t bytes_transferred // Number of bytes written from the
  510. * // buffers. If an error occurred,
  511. * // this will be less than the sum
  512. * // of the buffer sizes.
  513. * ); @endcode
  514. * Regardless of whether the asynchronous operation completes immediately or
  515. * not, the handler will not be invoked from within this function. Invocation of
  516. * the handler will be performed in a manner equivalent to using
  517. * boost::asio::io_service::post().
  518. */
  519. template <typename AsyncWriteStream, typename Allocator, typename WriteHandler>
  520. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  521. void (boost::system::error_code, std::size_t))
  522. async_write(AsyncWriteStream& s, basic_streambuf<Allocator>& b,
  523. BOOST_ASIO_MOVE_ARG(WriteHandler) handler);
  524. /// Start an asynchronous operation to write a certain amount of data to a
  525. /// stream.
  526. /**
  527. * This function is used to asynchronously write a certain number of bytes of
  528. * data to a stream. The function call always returns immediately. The
  529. * asynchronous operation will continue until one of the following conditions
  530. * is true:
  531. *
  532. * @li All of the data in the supplied basic_streambuf has been written.
  533. *
  534. * @li The completion_condition function object returns 0.
  535. *
  536. * This operation is implemented in terms of zero or more calls to the stream's
  537. * async_write_some function, and is known as a <em>composed operation</em>. The
  538. * program must ensure that the stream performs no other write operations (such
  539. * as async_write, the stream's async_write_some function, or any other composed
  540. * operations that perform writes) until this operation completes.
  541. *
  542. * @param s The stream to which the data is to be written. The type must support
  543. * the AsyncWriteStream concept.
  544. *
  545. * @param b A basic_streambuf object from which data will be written. Ownership
  546. * of the streambuf is retained by the caller, which must guarantee that it
  547. * remains valid until the handler is called.
  548. *
  549. * @param completion_condition The function object to be called to determine
  550. * whether the write operation is complete. The signature of the function object
  551. * must be:
  552. * @code std::size_t completion_condition(
  553. * // Result of latest async_write_some operation.
  554. * const boost::system::error_code& error,
  555. *
  556. * // Number of bytes transferred so far.
  557. * std::size_t bytes_transferred
  558. * ); @endcode
  559. * A return value of 0 indicates that the write operation is complete. A
  560. * non-zero return value indicates the maximum number of bytes to be written on
  561. * the next call to the stream's async_write_some function.
  562. *
  563. * @param handler The handler to be called when the write operation completes.
  564. * Copies will be made of the handler as required. The function signature of the
  565. * handler must be:
  566. * @code void handler(
  567. * const boost::system::error_code& error, // Result of operation.
  568. *
  569. * std::size_t bytes_transferred // Number of bytes written from the
  570. * // buffers. If an error occurred,
  571. * // this will be less than the sum
  572. * // of the buffer sizes.
  573. * ); @endcode
  574. * Regardless of whether the asynchronous operation completes immediately or
  575. * not, the handler will not be invoked from within this function. Invocation of
  576. * the handler will be performed in a manner equivalent to using
  577. * boost::asio::io_service::post().
  578. */
  579. template <typename AsyncWriteStream, typename Allocator,
  580. typename CompletionCondition, typename WriteHandler>
  581. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  582. void (boost::system::error_code, std::size_t))
  583. async_write(AsyncWriteStream& s, basic_streambuf<Allocator>& b,
  584. CompletionCondition completion_condition,
  585. BOOST_ASIO_MOVE_ARG(WriteHandler) handler);
  586. #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
  587. /*@}*/
  588. } // namespace asio
  589. } // namespace boost
  590. #include <boost/asio/detail/pop_options.hpp>
  591. #include <boost/asio/impl/write.hpp>
  592. #endif // BOOST_ASIO_WRITE_HPP