我想围绕 Polly 框架创建一个通用包装器,以便可以有单个实现。为了实现它,我写了下面的代码
private Policy GetPolicy(EType eType)
{
var policy = default(Polly.Policy);
switch (eType)
{
case EType.T:
policy = Policy.Handle<SomeException>().Retry(n, x => new TimeSpan(0, 0, x));
break;
}
return policy;
}
我在我的一种包装方法中使用上述方法
public TOutput Execute<TOutput>(Func<TOutput> func, EType eType)
{
var policy = GetPolicy(eType);
return policy.Execute(() => func());
}
现在为了使用它,我编写了一个示例方法
var handleError = new HandleError();
var connection = handleError.Execute(() => factory.CreateConnection(), ExceptionType.Transient);
直到最重要的是工作正常,但是一旦我开始在一个接受参数的方法中调用它,它就会抛出错误
var handleError = new HandleError();
handleError.Execute(() => channel.ExchangeDeclare(queueDetail.ExchangeName, ExchangeType.Fanout), ExceptionType.Transient);
The type arguments for method 'HandleError.Execute<TOutput>(Func<TOutput>, ExceptionType)' cannot be inferred from the usage. Try specifying the type arguments explicitly.