Boost C++ Libraries Home Libraries People FAQ More

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,
    typename constraint< is_convertible< ExecutionContext &, execution_context & >::value, defaulted_constraint >::type  = 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,
    typename constraint< is_convertible< Executor1, Executor >::value >::type  = 0);
  » more...

PrevUpHomeNext