trilec
|
 |
« on: May 09, 2008, 10:32:50 » |
|
Hi All, was doing a few tests (multicore) and noticed some interesting behavior which is related to execution order.
The goal seemed fairly simple, A proxy sends ApplicationFacade.IM_INITIALIZED, from within its onRegister() but as it appears MODELS done first then VIEWS thus no "MY DATA IS INITIALIZED" Notification can't be sent from a proxy to a mediator at this startup stage, this can however can be done from a Mediator which would request "INITIALIZE yourself" then the proxy would respond IM_INITIALIZED
notifyObservers: ImInitialized notifyObservers: StartupInitialized notifyObservers: Startup
It almost seems like you need a Notification registered in a proxy that gets sent when ALL MODEL/VIEW are registered?? is there a framework suggestion (besides the Mediator call INITIALIZE proxy to get Notification out)
T
|