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

PrevUpHomeNext

dispatch

Submits a completion token or function object for execution.

template<
    typename NullaryToken>
DEDUCED dispatch(
    NullaryToken && token);
  » more...

template<
    typename Executor,
    typename NullaryToken = DEFAULT>
DEDUCED dispatch(
    const Executor & ex,
    NullaryToken && token = DEFAULT,
    typename constraint< execution::is_executor< Executor >::value||is_executor< Executor >::value >::type  = 0);
  » more...

template<
    typename ExecutionContext,
    typename NullaryToken = DEFAULT>
DEDUCED dispatch(
    ExecutionContext & ctx,
    NullaryToken && token = DEFAULT,
    typename constraint< is_convertible< ExecutionContext &, execution_context & >::value >::type  = 0);
  » more...
Requirements

Header: boost/asio/dispatch.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext