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 version of Boost is under active development. You are currently in the develop branch. The current version is 1.90.0.
Construct an overlapped handle without opening it.
explicit basic_overlapped_handle( const executor_type & ex); » more... template< typename ExecutionContext> explicit basic_overlapped_handle( ExecutionContext & context, constraint_t< is_convertible< ExecutionContext &, execution_context & >::value, defaulted_constraint > = defaulted_constraint()); » more...
Construct an overlapped handle on an existing native handle.
basic_overlapped_handle( const executor_type & ex, const native_handle_type & native_handle); » more... template< typename ExecutionContext> basic_overlapped_handle( ExecutionContext & context, const native_handle_type & native_handle, constraint_t< is_convertible< ExecutionContext &, execution_context & >::value > = 0); » more...
Move-construct an overlapped handle from another.
basic_overlapped_handle( basic_overlapped_handle && other); » more...
Move-construct an overlapped handle from a handle of another executor type.
template< typename Executor1> basic_overlapped_handle( basic_overlapped_handle< Executor1 > && other, constraint_t< is_convertible< Executor1, Executor >::value, defaulted_constraint > = defaulted_constraint()); » more...