boost::asio::windows::basic_object_handle
Provides object‐oriented handle functionality.
Synopsis
Declared in <boost/asio/windows/basic_object_handle.hpp>
template<typename Executor = any_io_executor>
class basic_object_handle;
Types
Name |
Description |
Rebinds the handle type to another executor. |
|
The type of the executor associated with the object. |
|
An object handle is always the lowest layer. |
|
Member Functions
Name |
Description |
|
Constructors |
Assignment operators |
|
Start an asynchronous wait on the object handle. |
|
Cancel all asynchronous operations associated with the handle. |
|
Close the handle. |
|
Get the executor associated with the object. |
|
Determine whether the handle is open. |
|
|
|
Get the native handle representation. |
|
Perform a blocking wait on the object handle. |
Description
The windows::basic_object_handle class provides asynchronous and blocking object‐oriented handle functionality.
Thread Safety
Distinct objects: Safe. Shared objects: Unsafe.
Created with MrDocs