Class used to specify that an asynchronous operation is detached.
class detached_t
Name |
Description |
---|---|
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 asio::experimental::detached
. For example:
my_socket.async_send(my_buffer, asio::experimental::detached);
Header: asio/experimental/detached.hpp
Convenience header: asio/experimental.hpp