命名空间
变体
操作

std::execution::let_stopped

来自 cppreference.com
< cpp‎ | execution
 
 
 
定义在头文件 <execution>
execution::sender auto let_stopped( execution::sender auto input,
                                    std::invocable auto function );
(自 C++26 起)

[编辑] 参数

input - 发送器,一旦停止,就会发送“停止令牌”来执行函数
function - 可调用对象,在输入发送器发生错误时,会使用该对象来调用错误处理函数

[编辑] 返回值

返回一个发送器,它描述了输入发送器所描述的任务图,并添加了一个在发送“停止”信号时调用的节点。

[编辑] 示例