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

post
PrevUpHomeNext

Submits a completion token or function object for execution.

template<
    typename NullaryToken = deferred_t>
auto post(
    NullaryToken && token = deferred_t());
  » more...

template<
    typename Executor,
    typename NullaryToken = default_completion_token_t<Executor>>
auto post(
    const Executor & ex,
    NullaryToken && token = default_completion_token_t< Executor >(),
    constraint_t<(execution::is_executor< Executor >::value &&can_require< Executor, execution::blocking_t::never_t >::value)||is_executor< Executor >::value >  = 0);
  » more...

template<
    typename ExecutionContext,
    typename NullaryToken = default_completion_token_t<typename ExecutionContext::executor_type>>
auto post(
    ExecutionContext & ctx,
    NullaryToken && token = default_completion_token_t< typename ExecutionContext::executor_type >(),
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value >  = 0);
  » more...

Submits a function to be run on a specified target executor, and after completion submits the completion handler.

template<
    typename Function,
    typename Executor,
    typename NullaryToken = default_completion_token_t<Executor>>
auto post(
    Function && function,
    const Executor & ex,
    NullaryToken && token = default_completion_token_t< Executor >(),
    constraint_t< is_void< result_of_t< decay_t< Function >()> >::value >  = 0,
    constraint_t<(execution::is_executor< Executor >::value &&can_require< Executor, execution::blocking_t::never_t >::value)||is_executor< Executor >::value >  = 0);
  » more...

Submits a function to be run on a specified target executor, and passes the result to a completion handler.

template<
    typename Function,
    typename Executor,
    typename CompletionToken = default_completion_token_t<Executor>>
auto post(
    Function && function,
    const Executor & ex,
    CompletionToken && token = default_completion_token_t< Executor >(),
    constraint_t< !is_void< result_of_t< decay_t< Function >()> >::value >  = 0,
    constraint_t<(execution::is_executor< Executor >::value &&can_require< Executor, execution::blocking_t::never_t >::value)||is_executor< Executor >::value >  = 0);
  » more...

Submits a function to be run on a specified execution context, and after completion submits the completion handler.

template<
    typename Function,
    typename ExecutionContext,
    typename NullaryToken = default_completion_token_t<typename ExecutionContext::executor_type>>
auto post(
    Function && function,
    ExecutionContext & ctx,
    NullaryToken && token = default_completion_token_t< typename ExecutionContext::executor_type >(),
    constraint_t< is_void< result_of_t< decay_t< Function >()> >::value >  = 0,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value >  = 0);
  » more...

Submits a function to be run on a specified execution context, and passes the result to a completion handler.

template<
    typename Function,
    typename ExecutionContext,
    typename CompletionToken = default_completion_token_t<typename ExecutionContext::executor_type>>
auto post(
    Function && function,
    ExecutionContext & ctx,
    CompletionToken && token = default_completion_token_t< typename ExecutionContext::executor_type >(),
    constraint_t< !is_void< result_of_t< decay_t< Function >()> >::value >  = 0,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value >  = 0);
  » more...
Requirements

Header: boost/asio/post.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext