...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Constructor.
template< class Handler> stable_async_base( Handler&& handler, Executor1 const& ex1, Allocator const& alloc = Allocator());
Name |
Description |
---|---|
|
The final completion handler. The type of this object must meet the requirements of CompletionHandler. The implementation takes ownership of the handler by performing a decay-copy. |
|
The executor associated with the implied I/O object target of the operation. The implementation shall maintain an executor work guard for the lifetime of the operation, or until the final completion handler is invoked, whichever is shorter. |
|
The allocator to be associated with objects derived from this
class. If |