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 a snapshot of the master branch, built from commit c6a8213e9b.
PrevUpHomeNext

basic_writable_pipe::basic_writable_pipe

Construct a basic_writable_pipe without opening it.

explicit basic_writable_pipe(
    const executor_type & ex);
  » more...

template<
    typename ExecutionContext>
explicit basic_writable_pipe(
    ExecutionContext & context,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value, defaulted_constraint >  = defaulted_constraint());
  » more...

Construct a basic_writable_pipe on an existing native pipe.

basic_writable_pipe(
    const executor_type & ex,
    const native_handle_type & native_pipe);
  » more...

template<
    typename ExecutionContext>
basic_writable_pipe(
    ExecutionContext & context,
    const native_handle_type & native_pipe,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value >  = 0);
  » more...

Move-construct a basic_writable_pipe from another.

basic_writable_pipe(
    basic_writable_pipe && other);
  » more...

Move-construct a basic_writable_pipe from a pipe of another executor type.

template<
    typename Executor1>
basic_writable_pipe(
    basic_writable_pipe< Executor1 > && other,
    constraint_t< is_convertible< Executor1, Executor >::value, defaulted_constraint >  = defaulted_constraint());
  » more...

PrevUpHomeNext