一直很心水棱镜(Prism)的事件聚合器。
看了下源代码,代码不多,但是东西真的不少。
简单的实现了一下,没有弱引用,没有线程安全,没有线程级别。
总的来说 原理还是很好理解的。
有点像观察者,或者说就是?
总共分为订阅,发布,通过一个单例总管。
内部设有一个字典和集合,保管引发实例和引发事件。
简单的画了个图
几处比较有意思的代码
字典保存对象
public TArg GetEvent<TArg>() where TArg : EventBase, new() { if (!EventTypeName.TryGetValue(typeof(TArg), out EventBase eventBase)) { var EventArgClass = new TArg(); if (EventArgClass != null) { EventTypeName[typeof(TArg)] = EventArgClass; } return EventArgClass; } else return (TArg)eventBase; }
引发事件
public Action<object[]> DoAction() { if (this.Action != null) { return args => { if (args != null && args[0] != null) { var d = default(TArg); d = (TArg)args[0]; ((Action<TArg>)Action)(d); } }; } return null; }
使用方式
public class Test : MethodSetting { } public class Test2 : MethodSetting<string> { } class Program { static void Main(string[] args) { EventManager.Instance.GetEvent<Test>().SetMethod(GetTest); EventManager.Instance.GetEvent<Test2>().SetMethod(GetTest2); EventManager.Instance.GetEvent<Test>().Push(); EventManager.Instance.GetEvent<Test2>().Push("Test"); EventManager.Instance.GetEvent<Test>().RemoveMethod(new Action(GetTest)); EventManager.Instance.GetEvent<Test2>().RemoveMethod(new Action<string>(GetTest2)); EventManager.Instance.GetEvent<Test>().Push(); EventManager.Instance.GetEvent<Test2>().Push("Test"); } private static void GetTest() { } private static void GetTest2(string obj) { } }
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/12594.html