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

connect_pipe

Connect two pipe ends using an anonymous pipe.

template<
    typename Executor1,
    typename Executor2>
void connect_pipe(
    basic_readable_pipe< Executor1 > & read_end,
    basic_writable_pipe< Executor2 > & write_end);
  » more...

template<
    typename Executor1,
    typename Executor2>
void connect_pipe(
    basic_readable_pipe< Executor1 > & read_end,
    basic_writable_pipe< Executor2 > & write_end,
    boost::system::error_code & ec);
  » more...
Requirements

Header: boost/asio/connect_pipe.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext