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 a development version of boost.
PrevUpHomeNext
pooled_connection::pooled_connection (2 of 2 overloads)

Move constructor.

Synopsis
pooled_connection(
    pooled_connection&& other) noexcept;
Description

Transfers connection ownership from other to *this.

After this function returns, if other.valid() == true, this->valid() == true. In any case, other will become invalid (other.valid() == false).

Exception safety

No-throw guarantee.


PrevUpHomeNext