Silverlight - Prism Event Aggregator - 事件订阅与退订

本文探讨了在使用PrismEventAggregator时遇到的一个内存泄漏问题,详细分析了问题产生的原因,并给出了具体的解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

今天发现一个bug:

场景:某个可以反复打开、关闭的view (每次打开生成一个viewmodel), 在viewmodel的constuctor中使用Prism EventAggregator订阅了一系列事件。

Bug: 反复打开、关闭后,即使某个事件在控件本次打开后,只触发了一次,事件处理方法却被调用多次。

原因:

1. 订阅事件时,使用了Strong References (keepSubscriberReferenceAlive 参数值为true)

2. 关闭View时,没有将之前的事件订阅退订

by default, CompositePresentationEvent maintains weak reference to subscriber's handling method to avoid memory leaks . This means that reference that it holds will not prevent garbage collector from collecting the subscriber.
For most applications this is what we really want, but if you publish large amouts of events very frequently, it may lead to poor performance. keepSubscriberReferenceAlive is the parameter of Subscribe() mathod that controls which (strong/weak) reference is being held.
If we decide to keep subscriber reference alive, we'll have to remember to unsubscribe from an event once we don't need it anymore to avoid memory leaks.

h ttp://www.mokosh.co.uk/post/Prism-2-WPF-and-Silverlight-Events.aspx

解决:实现IDisposable接口,在Dispose方法中退订事件

此外,Prism (Feb 2009) 在Silverlight上使用week references时不支持事件过滤为Lambda表达式,可用一个方法代替:

public


bool

FundOrderFilter(FundOrder fundOrder)


{


return

fundOrder.CustomerId == _customerId;


}


...





FundAddedEvent fundAddedEvent = eventAggregator.GetEvent<FundAddedEvent>();





subscriptionToken = fundAddedEvent.Subscribe(FundAddedEventHandler, ThreadOption.UIThread, false

, FundOrderFilter

);



http://msdn.microsoft.com/en-us/library/dd458918.aspx
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值