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

inline_or_executor::require
PrevUpHomeNext

Obtain an executor with the blocking.possibly property.

inline_or_executor< Executor, execution::blocking_t::possibly_t, InlineExceptionHandling > require(
    const execution::blocking_t::possibly_t & ) const;
  » more...

Obtain an executor with the blocking.always property.

inline_or_executor< Executor, execution::blocking_t::always_t, InlineExceptionHandling > require(
    const execution::blocking_t::always_t & ) const;
  » more...

Obtain an executor with the blocking.never property.

inline_or_executor< Executor, execution::blocking_t::never_t, InlineExceptionHandling > require(
    const execution::blocking_t::never_t & ) const;
  » more...

Obtain an executor with the inline_exception_handling.propagate property.

inline_or_executor< Executor, Blocking, execution::inline_exception_handling_t::propagate_t > require(
    const execution::inline_exception_handling_t::propagate_t & ) const;
  » more...

Obtain an executor with the inline_exception_handling.terminate property.

inline_or_executor< Executor, Blocking, execution::inline_exception_handling_t::terminate_t > require(
    const execution::inline_exception_handling_t::terminate_t & ) const;
  » more...

Forward a requirement to the underlying executor.

template<
    typename Property>
inline_or_executor< decay_t< require_result_t< const Executor &, Property > >, Blocking, InlineExceptionHandling > require(
    const Property & p,
    constraint_t< can_require< const Executor &, Property >::value >  = 0,
    constraint_t< !is_convertible< Property, execution::blocking_t >::value >  = 0,
    constraint_t< !is_convertible< Property, execution::inline_exception_handling_t >::value >  = 0) const;
  » more...

PrevUpHomeNext