gpt4 book ai didi

c# - 如何让 ActionBlock 在发生任何异常时运行

转载 作者:行者123 更新时间:2023-11-30 21:39:33 25 4
gpt4 key购买 nike

我有一个 ActionBlock,它只处理来自无限循环的连续不断的消息。在 ActionBlock 中,我发布了一个 http 帖子。当出现任何与网络相关的错误时,该方法会抛出异常并且该 block 出现故障/停止。这不是我想要的行为。即使发生异常,我也希望处理运行。 (继续点击 Process 方法)模拟我的程序;

private static ExecutionDataflowBlockOptions processBlockOptions
{
get
{
return new ExecutionDataflowBlockOptions
{
MaxDegreeOfParallelism = 1
};
}
}

static async Start()
{
processQueue = new
ActionBlock<QueueMessage>(
async (item) =>
{
await Process(item);
},
processBlockOptions);

while (!Stopped)
{
//Read from DB and do logic with item
QueueMessage item= new QueueMessage();
await processQueue.SendAsync(item);
}
}

private async static Task<int> Process(QueueMessage item)
{
try
{
await item.HttpPost(order);
}
catch (Exception ex)
{
//Http endpoint might be broken
throw ex;
}
}

最佳答案

您正在重新抛出异常,但您做错了:

throw ex;

如果您需要记录错误或暂时停止管道,您不需要抛出任何东西,只需记录 ex.ToString() 并做出相应的 react 。第二件事是你应该使用 throw; 而不是 throw ex;,因为你正在为异常重写堆栈跟踪,这在这种情况下并不重要但是在更复杂的工作流程的情况下可能会产生误导。

关于c# - 如何让 ActionBlock 在发生任何异常时运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45184684/

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