So here is the situation. I have an app that loads up a module, passes the module a reference to a VBox residing in the app. The module then tosses in a couple UI components into the VBox that are attached to some processing going on in the module. Within the module there is a timer firing off events every few seconds and I can see this with some trace output. When I unload the module, or unload the module and clear the Vbox children wise I still see the timer event firing my trace.
My question is this shouldn't unloading the module wipe out that timer? If it doesn't as it would seem it is not, it would stand to reason that GC is never going to pick it up leading to a wonderful memory leak if load up any more of that module. If thats the case what is the best way to free up that memory? Thanks in Advance, Kyle