IProxy |
com.afw.puremvc.InitMonitor.model
Application proxy classes for use with InitMonitorProxy, all proxies passed to InitMonitorProxy must implement this interface and extend InitSimpleProxy.
| IInitProxy | com.afw.puremvc.InitMonitor.model |
| Functions | |
| load | This function gets called by InitMonitorProxy. |
| stop | This function should stop loading in its tracks. |
| Properties | |
| complete | The complete property helps InitMonitorProxy to calculate loading progress. |
| completeNotificationName | The proxy must call the finish() function, defined in InitSimpleProxy when load() is complete. |
function get completeNotificationName():String
The proxy must call the finish() function, defined in InitSimpleProxy when load() is complete. The finish() function sends the complete notification.
This notification name may often be hardcoded into the proxy. It is used internally to notify InitMonitorProxy of completion progress. However, to use this notification elsewhere, define it inside ApplicationFacade.
Keep in mind that this notification should be issued (when the proxy calls finish()) every single time, regardless of whether or not the proxy was already complete before load() was called. (ie., If complete was already true, then finish() is called immediately after load)
This function gets called by InitMonitorProxy.
function load():void
This function should stop loading in its tracks.
function stop():void
The complete property helps InitMonitorProxy to calculate loading progress.
function get complete():Boolean
The proxy must call the finish() function, defined in InitSimpleProxy when load() is complete.
function get completeNotificationName():String