Core.addListner is deprecated, what is alternative ?

1
I am upgrading my mendix app from 7.23.30 to 8.18.23 and faced a issue in StartLoginHandler class as Core.addListner is deprecated documentation says it is replaced by Interface ListenersRegistry.    Can someone help me out calling method of ListenersRegistry i.e ListnerRegistry.addListner and how will it work.  
asked
2 answers
2

Hi Vipin, I answered the same question here:

https://forum.mendix.com/link/space/java-actions/questions/123164

answered
4

Hi Vipin,

This is replaced by,

 ListenersRegistry.addListener(ActionListener)

You can visit to this javadoc for more information,

https://apidocs.rnd.mendix.com/7/runtime/com/mendix/core/Core.html

 

Hope it helps!

answered