c# Task编程一个task抛出异常后怎么取消其他线程

从MSDN的Forum上看到别人提供的解决方案,感觉还是比较靠谱,所以就保存下来。

            CancellationTokenSource cts = new CancellationTokenSource();

            Task t1 = Task.Factory.StartNew(() =>

            {

                if (!cts.IsCancellationRequested)

                {

                    try

                    {

                        //task body that may throw

                        Console.WriteLine("Task1");

                    }

                    catch

                    {

                        cts.Cancel();

                        throw new OperationCanceledException(cts.Token); //the task final state will be Cancelled

       //the exception can be ignored if needed

                    }

 

                    if (cts.IsCancellationRequested)

                    {

                        //depending on the scenario

                        //ignore any computed result, do not persist any data, revert all changes

                    }

                }

            }, cts.Token);

 

            Task t2 = Task.Factory.StartNew(() =>

            {

                if (!cts.IsCancellationRequested)

                {

                    try

                    {

                        //task body that may throw

                        Console.WriteLine("Task2");

                    }

                    catch

                    {

                        cts.Cancel();

                        throw new OperationCanceledException(cts.Token); //the task final state will be Cancelled

                    }

 

                    if (cts.IsCancellationRequested)

                    {

                        //depending on the scenario

                        //ignore any computed result, do not persist any data, revert all changes

                    }

                }

            }, cts.Token);

 

2.       In case that you would like to avoid try/catch in every body you could use a Task Continuation approach like below. However with this approach, the application will pay the price of new tasks being created. At the same time the Cancellation will be delayed.

            CancellationTokenSource cts = new CancellationTokenSource();

            Task t1 = Task.Factory.StartNew(() =>

            {

                if (!cts.IsCancellationRequested)

                {

                    //task body that may throw

                    Console.WriteLine("Task1");

                    if (cts.IsCancellationRequested)

                    {

                        //depending on the scenario

                        //ignore any computed result, do not persist any data, revert all changes

                    }

                }

            }, cts.Token).ContinueWith((task) =>

            {

                cts.Cancel();

                //observe the exception

                Exception ex = task.Exception;

            }, TaskContinuationOptions.OnlyOnFaulted|TaskContinuationOptions.ExecuteSynchronously );

 

            Task t2 = Task.Factory.StartNew(() =>

            {

                if (!cts.IsCancellationRequested)

                {

                    //task body that may throw

                    Console.WriteLine("Task2");

                    if (cts.IsCancellationRequested)

                    {

                        //depending on the scenario

                        //ignore any computed result, do not persist any data, revert all changes

                    }

                }

            }, cts.Token).ContinueWith((task) =>

            {

                cts.Cancel();

                //observe the exception

                Exception ex = task.Exception;

            }, TaskContinuationOptions.OnlyOnFaulted | TaskContinuationOptions.ExecuteSynchronously);

 

参考,转载:

https://social.msdn.microsoft.com/Forums/vstudio/en-US/2cbe1fa7-c7dd-4e88-8773-2e3bb1665e2e/how-to-cancel-other-task-when-there-is-an-exception-in-one-of-the-task?forum=parallelextensions

转载于:https://www.cnblogs.com/yy3b2007com/p/4145845.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值