-
Bug
-
Resolution: Incomplete
-
P4
-
None
-
7u21
I am in a bit of hurry so pardon me for not providing a SSCCE. (and I am working on very large legacy system as of now)
But I am pretty sure, I am seeing one specific behaviour with
addEventHandler()
and
removeEventHandler()
set of methods.
Basically what I have understood so far from profiling that EventHandlerManager implementation is not removing the CompositeHandler from eventHandlerMap its keeping. Unregistring is fine, probably that is working I didn't check though, but not removing from map and and hence getting leaking my handler (and this become more sever problem when my handler is an inner class, which actually is in my case and outer class also is kept alive then)
Can somebody please take a look and confirm if my suspicion is correct?
But I am pretty sure, I am seeing one specific behaviour with
addEventHandler()
and
removeEventHandler()
set of methods.
Basically what I have understood so far from profiling that EventHandlerManager implementation is not removing the CompositeHandler from eventHandlerMap its keeping. Unregistring is fine, probably that is working I didn't check though, but not removing from map and and hence getting leaking my handler (and this become more sever problem when my handler is an inner class, which actually is in my case and outer class also is kept alive then)
Can somebody please take a look and confirm if my suspicion is correct?