处理集合内的对象事件
如何正确处理集合内对象的事件?
示例:我有一个 List
,它异步 ping 多个服务器。如何判断列表中的一项是否已调用 PingCompleted 事件?如果我添加/删除 Ping 对象会怎样?
How do I properly handle the events of objects inside a collection?
Example: I have a List<Ping>
which asynchronously pings a number of servers. How can I tell if one of the items in the List have called the PingCompleted event? What if I add/remove Ping objects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Collection 在继承方面比 List 更好:
并且不要忘记在删除时取消订阅。
(编辑以引导丹的建议)
Collection is rather better than List for inheritance:
And don't forget to unsubscribe on remove.
(Edited to lead Dan's suggestion)
您需要在每个 Ping 实例上设置事件处理程序。在事件处理程序中,您可以检查
source
参数来识别引发事件的 Ping 对象。使用完该对象后,请记住删除处理程序引用,以帮助垃圾收集器完成其工作。
You need to set the event handler on each Ping instance. Inside the event handler you can inspect the
source
parameter to identify the Ping object that raised the event.Remember to remove the handler reference once you are finished using the object to help the Garbage Collector do its job.