此问题涉及事件(基类事件和子类事件)和事件处理程序。我正在处理现有代码,这似乎不像作者所期望的那样工作。我很难理解为什么它不起作用,所以我想了解在我尝试修复现有代码之前发生了什么。
我发现了以下问题,可能会或可能不会建议我需要为子类型事件创建一个额外的事件处理程序:
C#: Raising an inherited event
如果确实是一个额外的事件处理程序,我仍然想知道为什么会这样。这是我在这里的第一个问题,我确实试图寻找我的问题的答案/解释,但真诚的道歉,如果它仍然是我应该很容易找到的东西。一个严厉的" RTFM!"在这一点上,我可以通过教育联系:)
我们有2个事件类,一个基本类型和一个子类型。存在子类型事件以处理删除事件。
public class BaseTypeEvent
{
public Guid Id { get; set; }
public string Name { get; set; }
public BaseTypeEvent()
{ }
public BaseTypeEvent(SomeRandomThing item)
{
Id = item.Id;
Name = item.Name;
}
}
public class SubTypeEvent : BaseTypeEvent
{
public DateTimeOffset Deleted { get; set; }
public SubTypeEvent()
{
Deleted = DateTimeOffset.UtcNow;
}
}
这些事件似乎失败的用法:
public class UsageClass
{
public UsageClass(IEventBusService eventBusService)
{
eventBusService.MyBaseTypeEvents += HandleMethod;
}
private void HandleMethod(BaseTypeEvent e)
{
if(e is SubTypeEvent)
{
//code that deals with deletion events
//execution never actually gets here
}
//code that deals with events that are not deletion events
}
}
事件的声明在IEventBusService和EventBusService中:
public delegate void MyEventHandler(BaseTypeEvent e);
public interface IEventBusService
{
public event MyEventHandler MyBaseTypeEvents;
void PublishStuff(BaseTypeEvent e);
}
public class EventBusService : IEventBusService, IDisposable
{
public void Initialize()
{
//Bus is MassTransit
Bus.Initialize(sbc =>
{
sbc.Subscribe(subs => subs.Handler<BaseTypeEvent>(OnBaseTypeEvent));
}
}
private void OnBaseTypeEvent(BaseTypeEvent e)
{
if (MyBaseTypeEvents == null) return;
try
{
MyBaseTypeEvents(e);
}
catch (Exception e)
{
//some logging
}
}
public event MyEventHandler MyBaseTypeEvents;
public void PublishStuff(BaseTypeEvent e)
{
//some logging
//publish e to the event bus of our choice (MassTransit)
Bus.Instance.Publish(e);
}
}
最后是我们发送删除事件的地方(试图删除我上面巧妙命名为SomeRandomThing的项目):
eventBusService.PublishStuff(new SubTypeEvent
{
Id = id,
Deleted = DateTimeOffset.UtcNow
});
所以问题是:在使用上面的最后一行代码发送删除事件之后,UsageClass中用于检查传入事件是否为SubTypeEvent类型的if语句实际上永远不会出现。 UsageClass的HandleMethod中的e类型是BaseTypeEvent。
修改
我决定在这种情况下摆脱子类型。我们现在不再拥有BaseTypeEvent和SubTypeEvent,而只是EventTypeA和EventTypeB。一个处理创建和更新,另一个处理删除(我们需要创建和更新的信息要少得多)。
public delegate void MyEventAHandler(EventTypeA e);
public delegate void MyEventBHandler(EventTypeB e);
和
void PublishStuffForA(EventTypeA e);
void PublishStuffForB(EventTypeB e);
等等。
我在EventbusService的Initialize方法中额外订阅了MassTransit,并在需要它们的各种UsageClasses中添加了额外的处理程序:
sbc.Subscribe(subs => subs.Handler<EventTypeA>(OnEventTypeA));
sbc.Subscribe(subs => subs.Handler<EventTypeB>(OnEventTypeB));
和
public UsageClass(IEventBusService eventBusService)
{
eventBusService.MyEventTypeAEvents += HandleMethodForA;
eventBusService.MyEventTypeBEvents += HandleMethodForB;
}
等等。
我现在不再需要检查传入的事件是否属于某种类型,我只是分别处理两种类型。也许是一个警察,但它的确有效。
我不愿意将此作为我自己问题的答案,因为@ Glubus&#39;评论以及@ Travis&#39;评论回答了我的问题。仍然认为这个小编辑可能很高兴让每个人都知道我做了什么作为解决方案:)
编辑2:
有用的信息来源:
Derived types are not published to consumers in MassTransit
MassTransit message mis-typing
MassTransit: Message contracts, polymorphism and dynamic proxy objects
答案 0 :(得分:0)
所以我可以简短地回答一下:
在消息传递契约中使用多态会引入耦合。
我们相信,作为MassTransit的开发者,这是一个坏主意。它仍然可行,但不是开箱即用的。您必须使用二进制序列化或客户序列化程序。序列化管道的默认值仅填充使用者中类型的代理。