Hi All.
I have created in runtime an Instance with autowired components as following:
lobbyPresenter = context.createInstance(LobbyPresenterImpl,[lobbyView]);
After some works with this instance I have removed it from memory.
lobbyPresenter = null;
After a lot of time i need to create lobbyPresenter again and call a creation routine once more.
But when I create lobbyPresenter twice it wire all autowired events again. And all events annotated by EventHandler annotations like this [EventHandler(name="JoinedTableEvent")] are autowired again.
I dont find any methods to unwire component when it going to unecessary.
Please help me and advice.