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
any_connection::any_connection

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...

PrevUpHomeNext