欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#中Task.ContinueWith连续任务使用实例

程序员文章站 2022-03-01 13:17:38
通过任务,可以指定在任务完成之后,应开始运行之后另一个特定任务。例如,一个使用前一个任务的结果的新任务,如果前一个任务失败了,这个任务就应执行一些清理工作。任务处理程序都不带参数或者带一个对象参数,而...

通过任务,可以指定在任务完成之后,应开始运行之后另一个特定任务。例如,一个使用前一个任务的结果的新任务,如果前一个任务失败了,这个任务就应执行一些清理工作。任务处理程序都不带参数或者带一个对象参数,而任务的连续处理方法都有一个task类型的参数,这里可以访问起始任务的相关信息:

如下面的示例代码: 

   class program
    {
        static void doonfirst()
        {
            console.writeline($"doing some task{task.currentid}");
            thread.sleep(3000);
        }
        static void doonsecond(task t)
        {
            console.writeline($"task {t.id} finished");
            console.writeline($"this task id {task.currentid}");
            console.writeline("doing some cleanup");
            thread.sleep(3000);
        }
        static void main(string[] args)
        {
            task t1 = new task(doonfirst);
            t1.start();
            

            task t2 = t1.continuewith(doonsecond);
            task t3 = t1.continuewith(doonsecond);
            task t4 = t2.continuewith(doonsecond);
            console.readkey();
        }
    }
 

连续任务通过在任务上调用continuewith()方法来定义。也可以使用taskfactory类来定义。t1.continuewith(doonsecond)方法表示,调用doonsecond()方法的新任务应在任务t1结束时立即启动。在一个任务结束时,可以启动多个任务,连续任务也可以有另外一个连续任务。如下面的例子所示:

            task t1 = new task(doonfirst);
            t1.start();            

            task t2 = t1.continuewith(doonsecond);
            task t3 = t1.continuewith(doonsecond);
            task t4 = t2.continuewith(doonsecond);

使用taskcreationoptions枚举中的值,可以指定,连续的任务只有在起始任务成功(或者失败)结束时启动。一些可能的值是onlyonfaulted、notonfaulted 、onlyoncanceled、notoncanceled和onlyonrantocompletion。

task t5 = t1.continuewith(doonerror, taskcontinuationoptions.onlyonfaulted)

c# task.continuewith 返回对象

使用task.continuewith 可以在task完成时而继续执行的逻辑

当在continuewith中需要返回一个对象时,应该如何使用

 下方代码可以表示,在设置缓存完成后,重新读取缓存,并返回

 var item = await setcacheitemasync("key",  cacheitems)
                .continuewith<>(async _ => await cacheitem.getasync(key));

到此这篇关于c#中task.continuewith连续任务使用实例的文章就介绍到这了,更多相关c# task.continuewith内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!