命名空间
变体
操作

std::execution::on

来自 cppreference.com
< cpp‎ | execution
 
 
 
定义在头文件 <execution>
execution::sender auto on( execution::scheduler auto sched,
                           execution::sender auto snd );
(自 C++26)

[编辑] 参数

sched - 提供发送器将在其上执行的执行代理
snd - 要在与 sched 关联的执行资源上执行的工作

[编辑] 返回值

返回一个发送器,当启动时,将在属于与提供的调度器关联的执行资源的执行代理上启动提供的发送器。

返回的发送器没有完成调度器。

[编辑] 示例