Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

experimental::detached_t

Class used to specify that an asynchronous operation is detached.

class detached_t
Member Functions

Name

Description

detached_t

Constructor.

The experimental::detached_t class is used to indicate that an asynchronous operation is detached. That is, there is no completion handler waiting for the operation's result. A experimental::detached_t object may be passed as a handler to an asynchronous operation, typically using the special value boost::asio::experimental::detached. For example:

my_socket.async_send(my_buffer, boost::asio::experimental::detached);
Requirements

Header: boost/asio/experimental/detached.hpp

Convenience header: boost/asio/experimental.hpp


PrevUpHomeNext