1
目前我正在使用flex應用程序,我正在使用puremvc的多核變體。我的問題是在我的代理中,我正在遠程調用並附加一些(RESULT和FAULT)事件監聽器。因此,在我的事件處理程序代碼中,爲了讓remoteObject類符合垃圾收集條件,我應該顯式移除偵聽器嗎?在代理應該明確刪除監聽器?
public function getTableGridData():void
{
var hostController:RemoteObject=this.hostController("ABC");
hostController.addEventListener(ResultEvent.RESULT, handleResult);
hostController.addEventListener(FaultEvent.FAULT, handleFault);
hostController.getTableData();
}
private function handleResult(event:ResultEvent):void
{
ApplicationFacade.getInstance(key).sendNotification("abc", event.result);
}
所以這裏hostController擁有兩個監聽器的強引用。所以在resultEvent之後,hostController是否有資格進行垃圾收集,或者我必須提到監聽器的弱引用,以使hostController符合垃圾收集的條件?