gpt4 book ai didi

c# - 如何指定要注入(inject)的实现

转载 作者:太空狗 更新时间:2023-10-30 00:56:45 25 4
gpt4 key购买 nike

我正在实现通知服务。从本质上讲,客户可以通过多种方式获得通知,例如通过电子邮件、短信、传真等。下面是一个未连接在一起的粗略实现。

public class NotificationService
{
private readonly INotification _notification;
private readonly INotificationFormatter _formatter;

public NotificationService(
INotificationMethod notification,
INotificationFormatter formatter)
{
_notification = notification;
_formatter = formatter;
}

public void Notify(SomeParameterObject obj)
{
var formattedMessage = _formatter.Format(obj);
_notification.SendNotification(formattedMessage);
}
}

public interface INotificationFormatter
{
NotificationMessage Format(SomeParameterObject obj);
}

public interface INotification
{
void SendNotification();
}

public EmailNotification : INotification
{
public void SendNotification(NotificationMessage message)
{
// Use Exchange Web Services to send email
}
}

NotificationService 类本质上采用通知方法和格式化程序。显然,每种通知方法需要不同的格式。

根据业务标准,如何选择我希望使用的 INotificationNotificationFormatter 实现?请注意,在用户使用该应用程序的生命周期内,很可能会使用每个通知。我这样说是因为它不像指示我的容器注入(inject)实现 Foobar 那样简单,因为它会在用户使用应用程序时发生变化。

我考虑过创建某种可以处理对的类,因为在我看来,您不希望将文本消息通知格式化程序用于传真通知是有道理的。但是,我似乎无法全神贯注地解决这个问题。

我还拥有 Mark Seemann 撰写的《Dependency Injection in .NET》一书。我是不是漏掉了一些明显的东西?

谢谢。

最佳答案

您如何决定用户想要什么样的通知?如果它可以在他们使用您的应用程序时发生变化,那么该用户的 NotificationService 似乎必须为您要发送给他们的每个通知重新创建。没关系 - 只需使用某种查找来选择带有 IoC 容器的 INotification impelmentation。

IoC(我使用 AutoFac)允许您使用字符串索引来选择特定的实现。该字符串可能来自数据库或任何代表用户偏好的内容。然后您将它传递给您的 IoC,要求使用您的字符串选择“装饰”INotification。启动时,所有不同的实现都使用它们的选择字符串进行注册。

我认为您可能对您的“成对”评论有所了解 - 如果 INotificationFormat 与 INotification 紧密相关并且有可能将它们混合在一起,那么 INotification 实现本身应该选择其格式化程序。

关于c# - 如何指定要注入(inject)的实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6946231/

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