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
connection_pool::get_executor

Retrieves the executor associated to this object.

Synopsis
executor_type
get_executor();
Description

Returns the pool executor passed to the constructor, as per pool_executor_params::pool_executor.

Exception safety

No-throw guarantee.

Thead-safety

This function is never thread-safe, regardless of the executor configuration passed to the constructor. Calling this function concurrently with any other function introduces data races.


PrevUpHomeNext