I see this type of apparent magic in all sorts of AS3 code, but here is a reduced example:
package {
import flash.display.Sprite;
import flash.events.*;
import flash.net.*;
public class URLLoaderExample extends Sprite {
public function URLLoaderExample() {
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, onComplete);
loader.load(new URLRequest("example.txt");
} // 'loader' should fall out of scope here!
private function onComplete(evt:Event):void {
var loader:URLLoader = URLLoader(evt.target);
trace ("Received data: " + loader.data);
//unsure if removal below is necessary (since I don't
//know where 'loader' itself is hiding!)...
// - NOTE: this removal is never in the examples!
loader.removeEventListener(Event.COMPLETE, onComplete);
}
}
}
As indicated in the code comment, the loader variable should fall out of scope after the URLLoaderExample constructor. However... it still seems to be kept alive (not garbage collected) somewhere since the onComplete listener/handler is able to receive it cleanly.
Where is the magic/hidden/global reference to loader that keeps it alive so that it can complete it's load operation, and then be handed to the onComplete listener/callback? Can this reference be seen somewhere?
To help with context... as a similar example, I know that the loader instance will have the onComplete listener registered. I also know I need to be careful to use removeEventListener at all times (?) to avoid potential memory leaks resulting from stranded listeners. What concerns me is that I don't understand where the magic loader reference is and whether (or when) I need to clean that up.
Is it maybe the loader.load() call itself that stuffs loader somewhere globally?