Boost C++ Libraries Home Libraries People FAQ More

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