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 to view this page for the latest version.
PrevUpHomeNext
pool_params::connection_executor

The executor to be used by individual connections created by the pool.

Synopsis
asio::any_io_executor connection_executor {};
Description

If this member is set to a non-empty value (that is, static_cast<bool>(connection_executor) == true), individual connections will be created using this executor. Otherwise, connections will use the pool's executor (as per connection_pool::get_executor).


PrevUpHomeNext