- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用作为 prism 框架一部分的事件聚合器订阅事件时遇到问题。
如果我使用诸如
之类的东西eventAggregator.GetEvent<string>().Subscribe(MyMethod)
然后一切正常,我的方法在事件发布时触发。
但是,当移动到比字符串更复杂的对象时,我遇到了问题。
例如,我有一堆类都派生自接口(interface) (IRequest)
我的事件类设置如下
public class MyEvent<TRequest> : PubSubEvent<MyClass<TRequest>> where TRequest : IRequest {}
我有一个通用类 (MyClass),它在其中使用了一个 IRequest 对象 - 同样,此时一切似乎都正常。
现在,假设我发布了一个使用其中的对象 Profile 的 MyClass 事件:
eventAggregator.GetEvent<MyEvent<Profile>>().Publish(myProfileObject);
在我的订阅中,我想要一个可以捕获 MyEvent 的所有事件的方法——与 T 是 Profile 还是派生自 IRequest 的其他对象无关——这似乎是我遇到问题的地方。
在以下示例中,第一个有效,但第二个无效 - 我理想情况下希望使用与第二个类似的东西。
eventAggregator.GetEvent<MyEvent<Profile>>().Subscribe(test1);
void test1 (MyClass<Profile> obj)
{
//Some stuff here
}
eventAggregator.GetEvent<MyEvent<IRequest>>().Subscribe(test2);
void test2<T>(MyClass<T> obj) where T : IRequest
{
//never gets called
}
我的假设是因为 Profile 派生自 IRequest 那么它应该可以工作???但事实并非如此!
如有任何帮助,我们将不胜感激。
更新
如果我使用以下内容,它确实有效,但需要我为每种可用的 IRequest 类型创建一个单独的订阅 - 我希望只有一个订阅。
eventAggregator.GetEvent<MyEvent<Profile>>().Subscribe(test2);
eventAggregator.GetEvent<MyEvent<User>>().Subscribe(test2);
最佳答案
MyEvent<IRequest>
和 MyEvent<Profile>
不相同,因此 EventAggregator 不会将此视为同一事件。为了允许协变类型,您可以使用 C# 4 中的 out 修饰符来修复它。像这样的东西应该可以工作:
public interface IMyClass<out T> where T : IRequest { }
public class MyClass<T> : IMyClass<T> where T : IRequest { }
public class MyEvent<TValue> : PubSubEvent<IMyClass<TValue>> where TValue : IRequest { }
那么您的事件聚合器将类似于:
_eventAggregator.GetEvent<MyEvent<IRequest>>().Subscribe(Received);
private void Received(IMyClass<IRequest> obj)
{
}
_eventAggregator.GetEvent<MyEvent<IRequest>>().Publish(new MyClass<Profile>());
这有帮助吗?
关于c# - Prism - EventAggregator.GetEvent<>.Subscribe() - 使用泛型和约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33017900/
我是一名优秀的程序员,十分优秀!