![]() |
Home | Libraries | People | FAQ | More |
Move constructor.
pooled_connection( pooled_connection&& other);
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
).
No-throw guarantee.