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

basic_raw_socket::async_receive

Start an asynchronous receive on a connected socket.

template<
    typename MutableBufferSequence,
    typename ReadToken = default_completion_token_t<executor_type>>
auto async_receive(
    const MutableBufferSequence & buffers,
    ReadToken && token = default_completion_token_t< executor_type >());
  » more...

template<
    typename MutableBufferSequence,
    typename ReadToken = default_completion_token_t<executor_type>>
auto async_receive(
    const MutableBufferSequence & buffers,
    socket_base::message_flags flags,
    ReadToken && token = default_completion_token_t< executor_type >());
  » more...

PrevUpHomeNext