Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_readable_pipe::basic_readable_pipe

Construct a basic_readable_pipe without opening it.

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

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

Construct a basic_readable_pipe on an existing native pipe.

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

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

Move-construct a basic_readable_pipe from another.

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

PrevUpHomeNext