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
pooled_connection::get (1 of 2 overloads)

Retrieves the connection owned by this object.

Synopsis
any_connection&
get() noexcept;
Preconditions

The object should own a connection (this->valid() == true).

Object lifetimes

The returned reference is valid as long as *this or an object move-constructed or move-assigned from *this is alive.

Exception safety

No-throw guarantee.


PrevUpHomeNext