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 an older version of Boost and was released in 2024. The current version is 1.90.0.
Constructs a connection object from an executor and an optional set of parameters.
any_connection(
boost::asio::any_io_executor ex,
any_connection_params params = {});
» more...
Constructs a connection object from an execution context and an optional set of parameters.
template<
class ExecutionContext>
any_connection(
ExecutionContext& ctx,
any_connection_params params = {});
» more...
Move constructor.
any_connection(
any_connection&& other);
» more...