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 develop branch, built from commit 65ab21cc6f.
PrevUpHomeNext

experimental::basic_concurrent_channel::basic_concurrent_channel

Construct a experimental::basic_concurrent_channel.

basic_concurrent_channel(
    const executor_type & ex,
    std::size_t max_buffer_size = 0);
  » more...

Construct and open a experimental::basic_concurrent_channel.

template<
    typename ExecutionContext>
basic_concurrent_channel(
    ExecutionContext & context,
    std::size_t max_buffer_size = 0,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value, defaulted_constraint >  = defaulted_constraint());
  » more...

Move-construct a experimental::basic_concurrent_channel from another.

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

template<
    typename Executor1>
basic_concurrent_channel(
    basic_concurrent_channel< Executor1, Traits, Signatures... > && other,
    constraint_t< is_convertible< Executor1, Executor >::value >  = 0);
  » more...

PrevUpHomeNext