通过任务,可以指定在任务完成之后,应开始运行之后另一个特定任务。例如,一个使用前一个任务的结果的新任务,如果前一个任务失败了,这个任务就应执行一些清理工作。任务处理程序都不带参数或者带一个对象参数,而任务的连续处理方法都有一个task类型的参数,这里可以访问起始任务的相关信息:
如下面的示例代码:
class program { static void doonfirst() { console.writeline($"doing some task{task.currentid}"); thread.sleep(3000); } static void dooncond(task t) { console.writeline($"task {t.id} f富甲美国inished"); 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(dooncond); task t3 = t1.continuewith(doonco爱的冰淇淋nd); task t4 = t2.continuewith(dooncond); console.readkey(); } }
连续任务通过在任务上调用continuewith()方法来定义。也可以使用taskfactory类来定义。t1.continuewith(dooncond)方法表示,调用dooncond()方法的新任务应在任务t1结束时立即启动。在一个任务结束时,可以启动多个任务,连续任务也可以有另外一个连续任务中国前十大学。如下面的例子所示:
task t1 = new task(doonfirst); t1.start(); task t2 = t1.continuewith(dooncond); task t3 = t1.continuewith(dooncond); task t4 = t2.continuewith(dooncond);
使用taskcreationoptions枚举中的值,可以指定,连续的任务只有在起始任务成功(或者失败)结束时启动。一些可能的值是onlyo生态平衡nfaulted、notonfaulted 、onlyoncanceled、notoncanceled和onlyonrantocompletion。
task t5 = t1.continuewith(doonerror, taskcontinuationoptions.onlyonfaulted)
使用task.continuewith 可以在task完成时而继续执行的逻辑
当在continuewith中需要返回一个对象时,应该如何使用
下方代码可以表示,在设置缓存湖北省干部在线学习中心完成后,重新读取缓存,并返回
var item = await tcacheitemasync("key", cacheitems) .continuewith<>(async _ => await cacheitem.getasync(key));
到此这篇关于c#中task.continuewith连续任务使用实例的文章就介绍到这了,更多相关c# task.continuewith内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-05 00:33:00,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/af942df492ee392cb0cb01c954e49447.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:C#中Task.ContinueWith连续任务使用实例.doc
本文 PDF 下载地址:C#中Task.ContinueWith连续任务使用实例.pdf
留言与评论(共有 0 条评论) |