Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

execution::submit

A customisation point that submits a sender to a receiver.

constexpr unspecified submit = unspecified;

The name execution::submit denotes a customisation point object. For some subexpressions s and r, let S be a type such that decltype((s)) is S and let R be a type such that decltype((r)) is R. The expression execution::submit(s, r) is ill-formed if sender_to<S, R> is not true. Otherwise, it is expression-equivalent to:

Requirements

Header: boost/asio/execution/submit.hpp

Convenience header: boost/asio/execution.hpp


PrevUpHomeNext