gpt4 book ai didi

c# - 使用 Polly 从异步函数进行重试

转载 作者:行者123 更新时间:2023-12-04 00:02:04 26 4
gpt4 key购买 nike

我试图重试失败的操作 3 次。
我正在使用 Polly 进行重试操作。
我想在重试操作失败的情况下获得异常并重试 2 次,依此类推。

return await Policy
.Handle<CustomException>()
.RetryAsync(3, onRetryAsync: async (exception, retryCount, context) =>
{
return await runner.run(params);
});
函数应该返回
Task<IReadOnlyCollection<string>>
我收到以下错误:

async lambda expression converted to a task returning delegate cannotreturn a value

最佳答案

我认为在重试策略中运行您的逻辑是不寻常的 - 除非我误解了您的问题。更常见的是,您通过调用运行逻辑的方法来执行策略。

像这样的东西:

async Task Main()
{
var polly = Policy
.Handle<Exception>()
.RetryAsync(3, (exception, retryCount, context) => Console.WriteLine($"try: {retryCount}, Exception: {exception.Message}"));

var result = await polly.ExecuteAsync(async () => await DoSomething());
Console.WriteLine(result);
}

int count = 0;

public async Task<string> DoSomething()
{
if (count < 3)
{
count++;
throw new Exception("boom");
}

return await Task.FromResult("foo");
}

output


try: 1, Exception: boom
try: 2, Exception: boom
try: 3, Exception: boom
foo

关于c# - 使用 Polly 从异步函数进行重试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59456197/

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