vote up 0 vote down star

I'm trying to reuse the HTTPService object in a flex app but I'm running into a problem. In the handler for ResultEvent.RESULT I'm removing the listener, but it isn't removed. I've have to catch the asyncToken from send() and attach a new property so I know what it's supposed to do in the handler.

I've set up an example here: http://www.152.org/flex/
You can right-click and view source.

Has anyone else run into an issue where listeners aren't removed? Should HTTPService not be reused?

flag

2 Answers

vote up 1 vote down check

You cannot remove event listeners added in the mxml tag. livedocs says:

You can remove only event listeners that you added with the addEventListener() method in an ActionScript block. You cannot remove an event listener that was defined in the MXML tag

Define your HTTPService objects in actionscript (creationComplete of the app) and add event listeners using addEventListener method so that you can call removeEventListener on them to reuse.

link|flag
That's the approach I'm currently using. Events aren't removed when I call removeEventListener. – metric152 Oct 23 at 18:26
Read it again. Event listeners added thru mxml cannot be removed using removeEventListener. Period. – Amarghosh Oct 24 at 6:24
Now I understand what you mean. I thought you meant if you used something inline on an MXML tag. Since I'm creating the HTTPService call in a .MXML file I can't use removeEventListener. I'll try that on monday. – metric152 Oct 24 at 22:51
Worked like a charm. I moved the HTTPService requests out to a wrapper file and I was able to remove the eventListeners. Thanks for your help. – metric152 Oct 26 at 19:28
vote up 0 vote down

There is no guarantee that the event listener will be removed. Try making it a weak event handler when installing it on your object. There's a better chance that Flex's GC will free this when you remove it.

link|flag
I tried creating a weak reference and it's still not removing them. .addEventListener(ResultEvent.RESULT, populateTilelist, false, 0, true); .removeEventListener(ResultEvent.RESULT, populateTilelist, false); – metric152 Oct 23 at 18:37
As I said, it's up to the VM to do GC. That's the right approach. However, the AS3 VM apparently finds some reference still pointing to this resource and hence does not remove the event handlers. Time to check the rest of the code, I believe? – dirkgently Oct 23 at 20:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.