gpt4 book ai didi

c# - 使用属性包装方法 C#

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

我正在使用 Polly .NET 来通过重试行为包装我的方法。Polly 让它变得非常简单和优雅,但我正在努力将其提升到一个新的水平。

请看这个 Python 示例(它可能有一些错误,但这不是重点):

@retry(wait_exponential_multiplier=250,
wait_exponential_max=4500,
stop_max_attempt_number=8,
retry_on_result=lambda failures_count: failures_count > 0)
def put():
global non_delivered_tweets

logger.info("Executing Firehose put_batch command on {} tweets".format(len(non_delivered_tweets)))
response = firehose.put_record_batch(DeliveryStreamName=firehose_stream_name, Records=non_delivered_tweets)

failures_count = response["FailedPutCount"]
failures_list = []
if failures_count > 0:
for index, request_response in enumerate(response["RequestResponses"]):
if "ErrorCode" in request_response:
failures_list.append(non_delivered_tweets[index])

non_delivered_tweets = failures_list
return failures_count

编写上述代码的好处:

  • 您已阅读核心逻辑
  • 您认为在指定情况下会重试核心逻辑

由于两者没有混合 - 在我看来,它使代码更具可读性。

我想通过 Polly 在 C# 上使用属性来实现此语法。我对 C# 属性了解甚少,根据我所读到的内容,这似乎是不可能的。

我很高兴拥有这样的东西:

class Program
{
static void Main(string[] args)
{
var someClassInstance = new SomeClass();
someClassInstance.DoSomething();
}
}

class Retry : Attribute
{
private static readonly Policy DefaultRetryPolicy = Policy
.Handle<Exception>()
.WaitAndRetry(3, retryAttempt => TimeSpan.FromSeconds(5));

public void Wrapper(Action action)
{
DefaultRetryPolicy.Execute(action);
}
}

class SomeClass
{
[Retry]
public void DoSomething()
{
// core logic
}
}

如您所见,在我的示例中 - [Retry] 属性使用重试逻辑包装 DoSomething 方法。如果可能的话,我会很高兴学习如何实现它。

非常感谢您的帮助!

最佳答案

当然,这是可能的。然而,它比 Python 复杂得多。与 Python 不同,Python 中的装饰器是可以交换装饰对象的可执行代码,而 C# 中的属性是纯元数据。 .NET 属性无法访问它们所修饰的对象,而是代表其自身。

因此,你必须自己连接属性和方法,尤其是自己替换方法(即将核心逻辑的函数替换为还包括重试等的函数)。后者在 C# 中不可能隐式实现,您必须显式地执行此操作。

它的工作原理应该与此类似:

class RetryExecutor
{
public static void Call(Action action)
{
var attribute = action.Method.GetCustomAttribute(typeof(Retry));
if (attribute != null)
{
((Retry)attribute).Wrap(action);
}
else
{
action();
}
}
}

关于c# - 使用属性包装方法 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43681576/

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