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

PrevUpHomeNext
connection_pool::connection_pool

Constructs a connection pool.

connection_pool(
    pool_executor_params ex_params,
    pool_params params);
  » more...

connection_pool(
    asio::any_io_executor ex,
    pool_params params);
  » more...

template<
    class ExecutionContext>
connection_pool(
    ExecutionContext& ctx,
    pool_params params);
  » more...

Move-constructor.

connection_pool(
    connection_pool&& other);
  » more...

PrevUpHomeNext