当前位置:网站首页>C task expansion method
C task expansion method
2022-07-07 03:37:00 【Sky watching houses】
TASK, English words , Noun 、 Verb , As a noun, it means “( difficult ) Mission , Work ;( In language teaching ) Activities ”, Being a verb means “ Send to sb ( Mission ); Yes ( Means or ability ) Highly demanding ”
If you want to perform a task alone , Ignore mistakes , This method is more suitable for use .
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp5
{
public static class PublicTaskExtensions
{
static readonly Action<Task> IgnoreTaskContinuation = task => _ = task.Exception;
public static void Ignore(this Task task)
{
if (task.IsCompleted)
{
_ = task.Exception;
}
else
{
task.ContinueWith(IgnoreTaskContinuation,
CancellationToken.None,
TaskContinuationOptions.OnlyOnFaulted | TaskContinuationOptions.ExecuteSynchronously,
TaskScheduler.Default);
}
}
}
}
边栏推荐
- Graphical tools package yolov5 and generate executable files exe
- API data interface of A-share index component data
- How to replace the backbone of the model
- 校招行测笔试-数量关系
- Principle of attention mechanism
- How to customize the shortcut key for latex to stop running
- 19.(arcgis api for js篇)arcgis api for js线采集(SketchViewModel)
- 25.(arcgis api for js篇)arcgis api for js线修改线编辑(SketchViewModel)
- Mobile measurement and depth link platform - Branch
- 未来发展路线确认!数字经济、数字化转型、数据...这次会议很重要
猜你喜欢
Free PHP online decryption tool source code v1.2
23.(arcgis api for js篇)arcgis api for js椭圆采集(SketchViewModel)
Que savez - vous de la sérialisation et de l'anti - séquence?
Create applet from 0
Open3D 网格滤波
How to replace the backbone of the model
华为小米互“抄作业”
Appx code signing Guide
Flink task exit process and failover mechanism
海思万能平台搭建:颜色空间转换YUV2RGB
随机推荐
R data analysis: how to predict Cox model and reproduce high score articles
pip只下载不安装
Mathematical induction and recursion
Restcloud ETL Community Edition June featured Q & A
Jericho turns on the display icon of the classic Bluetooth hid mobile phone to set the keyboard [chapter]
图形化工具打包YOLOv5,生成可执行文件EXE
19.(arcgis api for js篇)arcgis api for js线采集(SketchViewModel)
[leetcode] 450 and 98 (deletion and verification of binary search tree)
小程序能运行在自有App中,且实现直播和连麦?
SSL证书部署
【达梦数据库】添加自动收集统计信息的任务
VHDL implementation of arbitrary size matrix multiplication
How to replace the backbone of the model
卡尔曼滤波-1
浅谈网络安全之文件上传
概率论公式
Ubuntu20 installation redisjson record
【安全攻防】序列化與反序列,你了解多少?
线性表的查找
Calculation of time and space complexity (notes of runners)