gpt4 book ai didi

c# - 在哪里处理 Task 抛出的异常

转载 作者:行者123 更新时间:2023-11-30 12:45:40 24 4
gpt4 key购买 nike

我正在单独的任务中执行一些轮询 IO 循环。这些循环可能会遇到异常。如果遇到异常,我想提醒调用者以便它可以:

  1. 记录下来
  2. 杀死所有IO线程
  3. 重置连接
  4. 重启IO线程

UI 必须保持响应。处理这种情况的首选方法是什么?我在下面包含了一个说明性程序。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TaskExceptionCatching
{
class Program
{
static void Main(string[] args)
{
startLoops();

System.Console.WriteLine("Type 'Exit' when you're ready to stop.");
while (System.Console.ReadLine() != "Exit")
{
System.Console.WriteLine("Seriously, just type 'Exit' when you're ready to stop.");
}
}

static private void startLoops()
{
System.Console.WriteLine("Starting fizzLoop.");
var fizzTask = Task.Factory.StartNew(new Action(fizzLoop));

System.Console.WriteLine("Starting buzzLoop.");
var buzzTask = Task.Factory.StartNew(new Action(buzzLoop));
}

static private void fizzLoop()
{
while (true)
{
//simulate something error prone, like some risky IO
System.Threading.Thread.Sleep(200);
bool isErr = (new Random().Next(1, 100) == 10);
if (isErr)
throw new Exception("Fizz got an exception.");
}
}

static private void buzzLoop()
{
while (true)
{
//simulate something error prone, like some risky IO
System.Threading.Thread.Sleep(200);
bool isErr = (new Random().Next(1, 100) == 10);
if (isErr)
throw new Exception("Buzz got an exception.");
}
}
}
}

最佳答案

这可能是 async void 方法可能很方便的罕见情况之一:

static async void StartAndMonitorAsync(Func<Task> taskFunc)
{
while (true)
{
var task = taskFunc();
try
{
await task;
// process the result if needed
return;
}
catch (Exception ex)
{
// log the error
System.Console.WriteLine("Error: {0}, restarting...", ex.Message);
}
// do other stuff before restarting (if any)
}
}

static private void startLoops()
{
System.Console.WriteLine("Starting fizzLoop.");
StartAndMonitorAsync(() => Task.Factory.StartNew(new Action(fizzLoop)));

System.Console.WriteLine("Starting buzzLoop.");
StartAndMonitorAsync(() => Task.Factory.StartNew(new Action(buzzLoop)));
}

如果您不能使用async/await,可以使用Task.ContinueWith 实现类似的逻辑。

如果可以多次调用 startLoops(而任务已经“进行中”),您需要向 StartAndMonitorAsync 及其任务添加取消逻辑sarts,使用 CancelltionToken(更多细节在 "A pattern for self-cancelling and restarting task" 中)。

关于c# - 在哪里处理 Task 抛出的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23687241/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com