I have the following scenario: In the start event I load the base application data from the backend. Since it's gwt this is asynchronous. My problem now is, that the next event is already fired before all data is loaded. e.g. Think of the history converter: at start 'start' is fired and afterwards the first event defined in the converter that will try to acces this data but fail since it might not be there yet.
The only solutions that come to my mind are:
1. Use busy waiting in the start method (sucks, browser gets unresponsive during that)
2. Ditch the start event functionality and do everything myself
What do you think? How did you solve that problem?
Thanks for any suggestions!
Den