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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

defer

Submits a completion token or function object for execution.

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

template<
    typename Executor,
    typename NullaryToken = DEFAULT>
DEDUCED defer(
    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 defer(
    ExecutionContext & ctx,
    NullaryToken && token = DEFAULT,
    typename constraint< is_convertible< ExecutionContext &, execution_context & >::value >::type  = 0);
  » more...
Requirements

Header: boost/asio/defer.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext