Mobile application cache system
a cache system and mobile application technology, applied in the field of mobile application architectures, can solve the problems of not easy to get connections wherever a user is, still a limit to what a device can store and process locally, and more troubl
- Summary
- Abstract
- Description
- Claims
- Application Information
AI Technical Summary
Problems solved by technology
Method used
Image
Examples
examples
[1703]The following anchor declaration invokes the foo( ) action, passing in a string parameter.
Foo
[1704]The action definition (defined in controller.xpf) is show below.
function foo($p) { $context.bar = {$p}; return [“CONTINUE”];}
[1705]In this case, the action sets a $context variable (an XML object containing the input parameter) and returns control to the current template.
[1706]The following example returns a forward object that changes the $current variable to point at the nodeset contained by the accounts keyref.
function example1($p) { ... return [$root.@@accounts.*];}
[1707]The following example change $current to point at the root node, and also changes the current template.
function example2($p) { ... return [$root, “bar.tmpl”];}
[1708]Timers
[1709]Timers implement a simple eventing mechanism. The addTimer( ) function is used to register a callback function, which is invoked after a specified delay, and optionally at regular intervals.
var timerId=$pageFlow.addTimer(callback, dela...
example
[1714]In the following example, the function foo( ) sets a timer, which immediately schedules the bar( ) function, then repeatedly at 1 second intervals.
function foo( ) { var timerId = $pageFlow.addTimer(bar, 0, 1000);}function bar(timerId, count) { $root.select(@@accounts.*.@@contacts.*.@@tasks.- *.where(.priority == 1)); if (count == 10) { $pageFlow.cancelTimer(timerId); }}
[1715]Here, the callback function, bar( ), invokes a deep select operation, which polls the server for updates on the data set defined by the SPath expression. The timer is cancelled on the 10th invocation, by calling the cancelTimer( ) system function.
[1716]The browser implements a single threaded execution model; therefore, the callback function isn't executed at least until the calling function returns.
[1717]History
[1718]Each time navigation occurs a tuple is placed onto the history stack, accessible by the $history system variable.
[1719]Calling the back( ) system action causes these values to be rolled bac...
PUM
Abstract
Description
Claims
Application Information
- R&D Engineer
- R&D Manager
- IP Professional
- Industry Leading Data Capabilities
- Powerful AI technology
- Patent DNA Extraction
Browse by: Latest US Patents, China's latest patents, Technical Efficacy Thesaurus, Application Domain, Technology Topic, Popular Technical Reports.
© 2024 PatSnap. All rights reserved.Legal|Privacy policy|Modern Slavery Act Transparency Statement|Sitemap|About US| Contact US: help@patsnap.com