src/cm/media/js/lib/yui/yui_3.0.0b1/api/datasource-polling.js.html
changeset 0 40c8f766c9b8
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
       
     2 <html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#">
       
     3 <head>
       
     4     <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
       
     5 	<title>API: datasource   datasource-polling.js  (YUI Library)</title>
       
     6 
       
     7 	<link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" />
       
     8 	<link rel="stylesheet" type="text/css" href="assets/api.css" />
       
     9 
       
    10     <script type="text/javascript" src="assets/api-js"></script>
       
    11     <script type="text/javascript" src="assets/ac-js"></script>
       
    12 </head>
       
    13 
       
    14 <body id="yahoo-com">
       
    15 
       
    16 <div id="doc3" class="yui-t2">
       
    17 	<div id="hd">
       
    18         <h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1>
       
    19         <h3>datasource&nbsp; <span class="subtitle">3.0.0b1</span></h3>
       
    20         <a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a> 
       
    21             &gt; <a href="./module_datasource.html" title="datasource">datasource</a>
       
    22                 
       
    23                  &gt; datasource-polling.js (source view) 
       
    24         <form onsubmit="return false">
       
    25             <div id="propertysearch">
       
    26                 Search: <input autocomplete="off" id="searchinput" />
       
    27                 <div id="searchresults">
       
    28                     &nbsp;
       
    29                 </div>
       
    30             </div>
       
    31         </form>
       
    32 	</div>
       
    33 
       
    34 	<div id="bd">
       
    35 		<div id="yui-main">
       
    36 			<div class="yui-b">
       
    37             <form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form">
       
    38                 <fieldset>
       
    39                     <legend>Filters</legend>
       
    40                 <span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span>
       
    41                 <span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span>
       
    42                 <span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span>
       
    43                 </fieldset>
       
    44             </form>
       
    45 
       
    46                     <div id="srcout">
       
    47                         <style>
       
    48                             #doc3 .classopts { display:none; }
       
    49                         </style>
       
    50 <div class="highlight" ><pre><span class="c">/**</span>
       
    51 <span class="c"> * Extends DataSource with polling functionality.</span>
       
    52 <span class="c"> *</span>
       
    53 <span class="c"> * @module datasource</span>
       
    54 <span class="c"> * @submodule datasource-polling</span>
       
    55 <span class="c"> */</span>
       
    56     
       
    57 <span class="c">/**</span>
       
    58 <span class="c"> * Adds polling to the DataSource Utility.</span>
       
    59 <span class="c"> * @class Pollable</span>
       
    60 <span class="c"> * @extends DataSource.Local</span>
       
    61 <span class="c"> */</span>    
       
    62 <span class="k">var</span> <span class="nx">LANG</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">Lang</span><span class="o">,</span>
       
    63 
       
    64     <span class="nx">Pollable</span> <span class="o">=</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
    65         <span class="k">this</span><span class="o">.</span><span class="nx">_intervals</span> <span class="o">=</span> <span class="o">{};</span>
       
    66     <span class="o">};</span>
       
    67 
       
    68 <span class="nx">Pollable</span><span class="o">.</span><span class="nx">prototype</span> <span class="o">=</span> <span class="o">{</span>
       
    69 
       
    70     <span class="c">/**</span>
       
    71 <span class="c">    * @property _intervals</span>
       
    72 <span class="c">    * @description Hash of polling interval IDs that have been enabled,</span>
       
    73 <span class="c">    * stored here to be able to clear all intervals.</span>
       
    74 <span class="c">    * @private</span>
       
    75 <span class="c">    */</span>
       
    76     <span class="nx">_intervals</span><span class="o">:</span> <span class="kc">null</span><span class="o">,</span>
       
    77 
       
    78     <span class="c">/**</span>
       
    79 <span class="c">     * Sets up a polling mechanism to send requests at set intervals and forward</span>
       
    80 <span class="c">     * responses to given callback.</span>
       
    81 <span class="c">     *</span>
       
    82 <span class="c">     * @method setInterval</span>
       
    83 <span class="c">     * @param msec {Number} Length of interval in milliseconds.</span>
       
    84 <span class="c">     * @param request {Object} Request object.</span>
       
    85 <span class="c">     * @param callback {Object} An object literal with the following properties:</span>
       
    86 <span class="c">     *     &lt;dl&gt;</span>
       
    87 <span class="c">     *     &lt;dt&gt;&lt;code&gt;success&lt;/code&gt;&lt;/dt&gt;</span>
       
    88 <span class="c">     *     &lt;dd&gt;The function to call when the data is ready.&lt;/dd&gt;</span>
       
    89 <span class="c">     *     &lt;dt&gt;&lt;code&gt;failure&lt;/code&gt;&lt;/dt&gt;</span>
       
    90 <span class="c">     *     &lt;dd&gt;The function to call upon a response failure condition.&lt;/dd&gt;</span>
       
    91 <span class="c">     *     &lt;dt&gt;&lt;code&gt;argument&lt;/code&gt;&lt;/dt&gt;</span>
       
    92 <span class="c">     *     &lt;dd&gt;Arbitrary data that will be passed back to the success and failure handlers.&lt;/dd&gt;</span>
       
    93 <span class="c">     *     &lt;/dl&gt;</span>
       
    94 <span class="c">     * @return {Number} Interval ID.</span>
       
    95 <span class="c">     */</span>
       
    96     <span class="nx">setInterval</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">msec</span><span class="o">,</span> <span class="nx">request</span><span class="o">,</span> <span class="nx">callback</span><span class="o">)</span> <span class="o">{</span>
       
    97         <span class="k">var</span> <span class="nx">x</span> <span class="o">=</span> <span class="nx">Y</span><span class="o">.</span><span class="nx">later</span><span class="o">(</span><span class="nx">msec</span><span class="o">,</span> <span class="k">this</span><span class="o">,</span> <span class="k">this</span><span class="o">.</span><span class="nx">sendRequest</span><span class="o">,</span> <span class="o">[</span><span class="nx">request</span><span class="o">,</span> <span class="nx">callback</span><span class="o">],</span> <span class="kc">true</span><span class="o">);</span>
       
    98         <span class="k">this</span><span class="o">.</span><span class="nx">_intervals</span><span class="o">[</span><span class="nx">x</span><span class="o">.</span><span class="nx">id</span><span class="o">]</span> <span class="o">=</span> <span class="nx">x</span><span class="o">;</span>
       
    99         <span class="k">return</span> <span class="nx">x</span><span class="o">.</span><span class="nx">id</span><span class="o">;</span>
       
   100     <span class="o">},</span>
       
   101 
       
   102     <span class="c">/**</span>
       
   103 <span class="c">     * Disables polling mechanism associated with the given interval ID.</span>
       
   104 <span class="c">     *</span>
       
   105 <span class="c">     * @method clearInterval</span>
       
   106 <span class="c">     * @param id {Number} Interval ID.</span>
       
   107 <span class="c">     */</span>
       
   108     <span class="nx">clearInterval</span><span class="o">:</span> <span class="k">function</span><span class="o">(</span><span class="nx">id</span><span class="o">,</span> <span class="nx">key</span><span class="o">)</span> <span class="o">{</span>
       
   109         <span class="c">// In case of being called by clearAllIntervals()</span>
       
   110 <span class="c"></span>        <span class="nx">id</span> <span class="o">=</span> <span class="nx">key</span> <span class="o">||</span> <span class="nx">id</span><span class="o">;</span>
       
   111         <span class="k">if</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">_intervals</span><span class="o">[</span><span class="nx">id</span><span class="o">])</span> <span class="o">{</span>
       
   112             <span class="c">// Clear the interval</span>
       
   113 <span class="c"></span>            <span class="k">this</span><span class="o">.</span><span class="nx">_intervals</span><span class="o">[</span><span class="nx">id</span><span class="o">].</span><span class="nx">cancel</span><span class="o">();</span>
       
   114             <span class="c">// Clear from tracker</span>
       
   115 <span class="c"></span>            <span class="nx">delete</span> <span class="k">this</span><span class="o">.</span><span class="nx">_intervals</span><span class="o">[</span><span class="nx">id</span><span class="o">];</span>
       
   116         <span class="o">}</span>
       
   117     <span class="o">},</span>
       
   118 
       
   119     <span class="c">/**</span>
       
   120 <span class="c">     * Clears all intervals.</span>
       
   121 <span class="c">     *</span>
       
   122 <span class="c">     * @method clearAllIntervals</span>
       
   123 <span class="c">     */</span>
       
   124     <span class="nx">clearAllIntervals</span><span class="o">:</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span>
       
   125         <span class="nx">Y</span><span class="o">.</span><span class="nx">each</span><span class="o">(</span><span class="k">this</span><span class="o">.</span><span class="nx">_intervals</span><span class="o">,</span> <span class="k">this</span><span class="o">.</span><span class="nx">clearInterval</span><span class="o">,</span> <span class="k">this</span><span class="o">);</span>
       
   126     <span class="o">}</span>
       
   127 <span class="o">};</span>
       
   128     
       
   129 <span class="nx">Y</span><span class="o">.</span><span class="nx">augment</span><span class="o">(</span><span class="nx">Y</span><span class="o">.</span><span class="nx">DataSource</span><span class="o">.</span><span class="nx">Local</span><span class="o">,</span> <span class="nx">Pollable</span><span class="o">);</span>
       
   130 </pre></div>
       
   131                     </div>
       
   132 			</div>
       
   133 		</div>
       
   134 		<div class="yui-b">
       
   135             <div class="nav">
       
   136 
       
   137                     <div id="moduleList" class="module">
       
   138                         <h4>Modules</h4>
       
   139                         <ul class="content">
       
   140                                 <li class=""><a href="module_anim.html" title="anim">anim</a></li>
       
   141                                 <li class=""><a href="module_attribute.html" title="attribute">attribute</a></li>
       
   142                                 <li class=""><a href="module_base.html" title="base">base</a></li>
       
   143                                 <li class=""><a href="module_cache.html" title="cache">cache</a></li>
       
   144                                 <li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li>
       
   145                                 <li class=""><a href="module_collection.html" title="collection">collection</a></li>
       
   146                                 <li class=""><a href="module_console.html" title="console">console</a></li>
       
   147                                 <li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li>
       
   148                                 <li class=""><a href="module_cookie.html" title="cookie">cookie</a></li>
       
   149                                 <li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li>
       
   150                                 <li class="selected"><a href="module_datasource.html" title="datasource">datasource</a></li>
       
   151                                 <li class=""><a href="module_datatype.html" title="datatype">datatype</a></li>
       
   152                                 <li class=""><a href="module_dd.html" title="dd">dd</a></li>
       
   153                                 <li class=""><a href="module_dom.html" title="dom">dom</a></li>
       
   154                                 <li class=""><a href="module_dump.html" title="dump">dump</a></li>
       
   155                                 <li class=""><a href="module_event.html" title="event">event</a></li>
       
   156                                 <li class=""><a href="module_event-custom.html" title="event-custom">event-custom</a></li>
       
   157                                 <li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li>
       
   158                                 <li class=""><a href="module_history.html" title="history">history</a></li>
       
   159                                 <li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li>
       
   160                                 <li class=""><a href="module_io.html" title="io">io</a></li>
       
   161                                 <li class=""><a href="module_json.html" title="json">json</a></li>
       
   162                                 <li class=""><a href="module_node.html" title="node">node</a></li>
       
   163                                 <li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li>
       
   164                                 <li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li>
       
   165                                 <li class=""><a href="module_oop.html" title="oop">oop</a></li>
       
   166                                 <li class=""><a href="module_overlay.html" title="overlay">overlay</a></li>
       
   167                                 <li class=""><a href="module_plugin.html" title="plugin">plugin</a></li>
       
   168                                 <li class=""><a href="module_profiler.html" title="profiler">profiler</a></li>
       
   169                                 <li class=""><a href="module_queue.html" title="queue">queue</a></li>
       
   170                                 <li class=""><a href="module_slider.html" title="slider">slider</a></li>
       
   171                                 <li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li>
       
   172                                 <li class=""><a href="module_substitute.html" title="substitute">substitute</a></li>
       
   173                                 <li class=""><a href="module_test.html" title="test">test</a></li>
       
   174                                 <li class=""><a href="module_widget.html" title="widget">widget</a></li>
       
   175                                 <li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li>
       
   176                                 <li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li>
       
   177                                 <li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li>
       
   178                                 <li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li>
       
   179                                 <li class=""><a href="module_yui.html" title="yui">yui</a></li>
       
   180                         </ul>
       
   181                     </div>
       
   182 
       
   183                     <div id="classList" class="module">
       
   184                         <h4>Classes</h4>
       
   185                         <ul class="content">
       
   186                                 <li class=""><a href="DataSource.Function.html" title="DataSource.Function">DataSource.Function</a></li>
       
   187                                 <li class=""><a href="DataSource.Get.html" title="DataSource.Get">DataSource.Get</a></li>
       
   188                                 <li class=""><a href="DataSource.IO.html" title="DataSource.IO">DataSource.IO</a></li>
       
   189                                 <li class=""><a href="DataSource.Local.html" title="DataSource.Local">DataSource.Local</a></li>
       
   190                                 <li class=""><a href="DataSourceArraySchema.html" title="DataSourceArraySchema">DataSourceArraySchema</a></li>
       
   191                                 <li class=""><a href="DataSourceCache.html" title="DataSourceCache">DataSourceCache</a></li>
       
   192                                 <li class=""><a href="DataSourceJSONSchema.html" title="DataSourceJSONSchema">DataSourceJSONSchema</a></li>
       
   193                                 <li class=""><a href="DataSourceTextSchema.html" title="DataSourceTextSchema">DataSourceTextSchema</a></li>
       
   194                                 <li class=""><a href="DataSourceXMLSchema.html" title="DataSourceXMLSchema">DataSourceXMLSchema</a></li>
       
   195                                 <li class=""><a href="Pollable.html" title="Pollable">Pollable</a></li>
       
   196                         </ul>
       
   197                     </div>
       
   198 
       
   199                     <div id="fileList" class="module">
       
   200                         <h4>Files</h4>
       
   201                         <ul class="content">        
       
   202                                 <li class=""><a href="datasource-arrayschema.js.html" title="datasource-arrayschema.js">datasource-arrayschema.js</a></li>
       
   203                                 <li class=""><a href="datasource-cache.js.html" title="datasource-cache.js">datasource-cache.js</a></li>
       
   204                                 <li class=""><a href="datasource-function.js.html" title="datasource-function.js">datasource-function.js</a></li>
       
   205                                 <li class=""><a href="datasource-get.js.html" title="datasource-get.js">datasource-get.js</a></li>
       
   206                                 <li class=""><a href="datasource-io.js.html" title="datasource-io.js">datasource-io.js</a></li>
       
   207                                 <li class=""><a href="datasource-jsonschema.js.html" title="datasource-jsonschema.js">datasource-jsonschema.js</a></li>
       
   208                                 <li class=""><a href="datasource-local.js.html" title="datasource-local.js">datasource-local.js</a></li>
       
   209                                 <li class="selected"><a href="datasource-polling.js.html" title="datasource-polling.js">datasource-polling.js</a></li>
       
   210                                 <li class=""><a href="datasource-textschema.js.html" title="datasource-textschema.js">datasource-textschema.js</a></li>
       
   211                                 <li class=""><a href="datasource-xmlschema.js.html" title="datasource-xmlschema.js">datasource-xmlschema.js</a></li>
       
   212                         </ul>
       
   213                     </div>
       
   214 
       
   215 
       
   216 
       
   217 
       
   218 
       
   219             </div>
       
   220 		</div>
       
   221 	</div>
       
   222 	<div id="ft">
       
   223         <hr />
       
   224         Copyright &copy; 2009 Yahoo! Inc. All rights reserved.
       
   225 	</div>
       
   226 </div>
       
   227 <script type="text/javascript">
       
   228     ALL_YUI_PROPS = [{"access": "", "host": "DataSource.Get", "name": "asyncMode", "url": "DataSource.Get.html#config_asyncMode", "type": "config"}, {"access": "", "host": "DataSource.Get", "name": "asyncModeChange", "url": "DataSource.Get.html#event_asyncModeChange", "type": "event"}, {"access": "protected", "host": "DataSourceArraySchema", "name": "_beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "url": "DataSourceArraySchema.html#method__beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "type": "method"}, {"access": "protected", "host": "DataSourceXMLSchema", "name": "_beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "url": "DataSourceXMLSchema.html#method__beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "type": "method"}, {"access": "protected", "host": "DataSourceJSONSchema", "name": "_beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "url": "DataSourceJSONSchema.html#method__beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "type": "method"}, {"access": "protected", "host": "DataSourceTextSchema", "name": "_beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "url": "DataSourceTextSchema.html#method__beforeDefDataFn\n<dl>\n<dt>tId (Number)<\/dt> <dd>Unique transaction ID.<\/dd>\n<dt>request (Object)<\/dt> <dd>The request.<\/dd>\n<dt>callback (Object)<\/dt> <dd>The callback object with the following properties:\n<dl>\n<dt>success (Function)<\/dt> <dd>Success handler.<\/dd>\n<dt>failure (Function)<\/dt> <dd>Failure handler.<\/dd>\n<\/dl>\n<\/dd>\n<dt>data (Object)<\/dt> <dd>Raw data.<\/dd>\n<\/dl>", "type": "method"}, {"access": "protected", "host": "DataSourceCache", "name": "_beforeDefRequestFn", "url": "DataSourceCache.html#method__beforeDefRequestFn", "type": "method"}, {"access": "protected", "host": "DataSourceCache", "name": "_beforeDefResponseFn", "url": "DataSourceCache.html#method__beforeDefResponseFn", "type": "method"}, {"access": "", "host": "DataSource.Get", "name": "callbacks", "url": "DataSource.Get.html#property_callbacks", "type": "property"}, {"access": "", "host": "Pollable", "name": "clearAllIntervals", "url": "Pollable.html#method_clearAllIntervals", "type": "method"}, {"access": "", "host": "Pollable", "name": "clearInterval", "url": "Pollable.html#method_clearInterval", "type": "method"}, {"access": "", "host": "DataSource.Local", "name": "data", "url": "DataSource.Local.html#event_data", "type": "event"}, {"access": "", "host": "DataSource.Local", "name": "DataSource.issueCallback", "url": "DataSource.Local.html#method_DataSource.issueCallback", "type": "method"}, {"access": "private", "host": "DataSource.Local", "name": "DataSource._tId", "url": "DataSource.Local.html#property_DataSource._tId", "type": "property"}, {"access": "protected", "host": "DataSource.Local", "name": "_defDataFn", "url": "DataSource.Local.html#method__defDataFn", "type": "method"}, {"access": "protected", "host": "DataSource.Get", "name": "_defRequestFn", "url": "DataSource.Get.html#method__defRequestFn", "type": "method"}, {"access": "protected", "host": "DataSource.Function", "name": "_defRequestFn", "url": "DataSource.Function.html#method__defRequestFn", "type": "method"}, {"access": "protected", "host": "DataSource.IO", "name": "_defRequestFn", "url": "DataSource.IO.html#method__defRequestFn", "type": "method"}, {"access": "protected", "host": "DataSource.Local", "name": "_defRequestFn", "url": "DataSource.Local.html#method__defRequestFn", "type": "method"}, {"access": "protected", "host": "DataSource.Local", "name": "_defResponseFn", "url": "DataSource.Local.html#method__defResponseFn", "type": "method"}, {"access": "", "host": "DataSource.Local", "name": "error", "url": "DataSource.Local.html#event_error", "type": "event"}, {"access": "", "host": "DataSource.Get", "name": "generateRequestCallback", "url": "DataSource.Get.html#config_generateRequestCallback", "type": "config"}, {"access": "", "host": "DataSource.Get", "name": "generateRequestCallbackChange", "url": "DataSource.Get.html#event_generateRequestCallbackChange", "type": "event"}, {"access": "", "host": "DataSource.Get", "name": "get", "url": "DataSource.Get.html#config_get", "type": "config"}, {"access": "", "host": "DataSource.Get", "name": "getChange", "url": "DataSource.Get.html#event_getChange", "type": "event"}, {"access": "private", "host": "DataSource.Local", "name": "_initEvents", "url": "DataSource.Local.html#method__initEvents", "type": "method"}, {"access": "private", "host": "DataSourceArraySchema", "name": "initializer", "url": "DataSourceArraySchema.html#method_initializer", "type": "method"}, {"access": "private", "host": "DataSourceXMLSchema", "name": "initializer", "url": "DataSourceXMLSchema.html#method_initializer", "type": "method"}, {"access": "private", "host": "DataSourceJSONSchema", "name": "initializer", "url": "DataSourceJSONSchema.html#method_initializer", "type": "method"}, {"access": "private", "host": "DataSource.IO", "name": "initializer", "url": "DataSource.IO.html#method_initializer", "type": "method"}, {"access": "private", "host": "DataSource.Local", "name": "initializer", "url": "DataSource.Local.html#method_initializer", "type": "method"}, {"access": "private", "host": "DataSourceCache", "name": "initializer", "url": "DataSourceCache.html#method_initializer", "type": "method"}, {"access": "private", "host": "DataSourceTextSchema", "name": "initializer", "url": "DataSourceTextSchema.html#method_initializer", "type": "method"}, {"access": "private", "host": "Pollable", "name": "_intervals", "url": "Pollable.html#property__intervals", "type": "property"}, {"access": "", "host": "DataSource.IO", "name": "io", "url": "DataSource.IO.html#config_io", "type": "config"}, {"access": "", "host": "DataSource.IO", "name": "ioChange", "url": "DataSource.IO.html#event_ioChange", "type": "event"}, {"access": "", "host": "DataSource.Get", "name": "NAME", "url": "DataSource.Get.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSource.Function", "name": "NAME", "url": "DataSource.Function.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSourceArraySchema", "name": "NAME", "url": "DataSourceArraySchema.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSourceXMLSchema", "name": "NAME", "url": "DataSourceXMLSchema.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSourceJSONSchema", "name": "NAME", "url": "DataSourceJSONSchema.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSource.IO", "name": "NAME", "url": "DataSource.IO.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSource.Local", "name": "NAME", "url": "DataSource.Local.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSourceCache", "name": "NAME", "url": "DataSourceCache.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSourceTextSchema", "name": "NAME", "url": "DataSourceTextSchema.html#property_NAME", "type": "property"}, {"access": "", "host": "DataSourceArraySchema", "name": "NS", "url": "DataSourceArraySchema.html#property_NS", "type": "property"}, {"access": "", "host": "DataSourceXMLSchema", "name": "NS", "url": "DataSourceXMLSchema.html#property_NS", "type": "property"}, {"access": "", "host": "DataSourceJSONSchema", "name": "NS", "url": "DataSourceJSONSchema.html#property_NS", "type": "property"}, {"access": "", "host": "DataSourceCache", "name": "NS", "url": "DataSourceCache.html#property_NS", "type": "property"}, {"access": "", "host": "DataSourceTextSchema", "name": "NS", "url": "DataSourceTextSchema.html#property_NS", "type": "property"}, {"access": "private", "host": "DataSource.IO", "name": "_queue", "url": "DataSource.IO.html#property__queue", "type": "property"}, {"access": "", "host": "DataSource.Local", "name": "request", "url": "DataSource.Local.html#event_request", "type": "event"}, {"access": "", "host": "DataSource.Local", "name": "response", "url": "DataSource.Local.html#event_response", "type": "event"}, {"access": "", "host": "DataSource.Get", "name": "scriptCallbackParam", "url": "DataSource.Get.html#config_scriptCallbackParam", "type": "config"}, {"access": "", "host": "DataSource.Get", "name": "scriptCallbackParamChange", "url": "DataSource.Get.html#event_scriptCallbackParamChange", "type": "event"}, {"access": "", "host": "DataSource.Local", "name": "sendRequest", "url": "DataSource.Local.html#method_sendRequest", "type": "method"}, {"access": "", "host": "Pollable", "name": "setInterval", "url": "Pollable.html#method_setInterval", "type": "method"}, {"access": "", "host": "DataSource.Function", "name": "source", "url": "DataSource.Function.html#config_source", "type": "config"}, {"access": "", "host": "DataSource.Local", "name": "source", "url": "DataSource.Local.html#config_source", "type": "config"}, {"access": "", "host": "DataSource.Function", "name": "sourceChange", "url": "DataSource.Function.html#event_sourceChange", "type": "event"}, {"access": "", "host": "DataSource.Local", "name": "sourceChange", "url": "DataSource.Local.html#event_sourceChange", "type": "event"}, {"access": "private", "host": "DataSource.Get", "name": "_tId", "url": "DataSource.Get.html#property__tId", "type": "property"}];
       
   229 </script>
       
   230 </body>
       
   231 </html>