Boost C++ Libraries Home Libraries People FAQ More

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