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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
pool_params::retry_interval

The interval between connect attempts.

Synopsis
std::chrono::steady_clock::duration retry_interval {std::chrono::seconds(30)};
Description

When session establishment fails, the operation will be retried until success. This value determines the interval between consecutive connection attempts.

This value must be greater than zero.


PrevUpHomeNext