Changes between Version 3 and Version 4 of DeveloperGuidelines/EdenMobile/Concepts
- Timestamp:
- 03/30/17 11:02:43 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/EdenMobile/Concepts
v3 v4 16 16 The most confusing part for developers coming from the Sahana Eden web application may be the inescapable asynchronism in EdenMobile. 17 17 18 Events can occur at any time ,independently of each other - so many state changes can happen in parallel. Introspecting state and carefully maintaining scope are thus key requirements for any EdenMobile functionality.18 Events can occur at any time and independently of each other - so many state changes can happen in parallel. Introspecting state and carefully maintaining scope are thus key requirements for any EdenMobile functionality. 19 19 20 At the same time, all access to back-end resources is asynchronous as well - so the return of control to the caller (=the user, eventually) always comes first , before the response, and flow control, in the vast majority of cases, requires management of deferred objects and callback chains.20 At the same time, all access to back-end resources is asynchronous as well - so the return of control to the caller (=the user, eventually) always comes first (i.e. before the response), and flow control, in the vast majority of cases, requires management of deferred objects and callback chains. 21 21 22 22 === No Models? ===