Namespaces
Variants
Views
Actions

std::execution::schedule(execution::scheduler auto scheduler)

From cppreference.com
< cpp‎ | execution
Revision as of 14:51, 28 January 2024 by InbalL (Talk | contribs)

Defined in header <execution>
execution::sender auto schedule(

    execution::scheduler auto scheduler

);
(since C++26)

Parameters

scheduler - scheduler on which the start of the task graph is scheduled.

Return value

Returns a sender describing the start of a task graph on the provided scheduler.

Example