⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ext.util.taskrunner.html

📁 Ext中文API,学习ext的同志只要你学会ext里的一种控件后其实其他的就大同小异了
💻 HTML
字号:
        <div class="body-wrap">        <div class="top-tools">            <a class="inner-link" href="#Ext.util.TaskRunner-props"><img src="ext-2.0/resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>            <a class="inner-link" href="#Ext.util.TaskRunner-methods"><img src="ext-2.0/resources/images/default/s.gif" class="item-icon icon-method">Methods</a>            <a class="inner-link" href="#Ext.util.TaskRunner-events"><img src="ext-2.0/resources/images/default/s.gif" class="item-icon icon-event">Events</a>                        <a class="bookmark" href="../docs/?class=Ext.util.TaskRunner"><img src="ext-2.0/resources/images/default/s.gif" class="item-icon icon-fav">Direct Link</a>        </div>                <h1>Class Ext.util.TaskRunner</h1>        <table cellspacing="0">            <tr><td class="label">Package:</td><td class="hd-info">Ext.util</td></tr>            <tr><td class="label">Defined In:</td><td class="hd-info">TaskMgr.js</td></tr>            <tr><td class="label">Class:</td><td class="hd-info">TaskRunner</td></tr>                                    <tr><td class="label">Extends:</td><td class="hd-info">Object</td></tr>                    </table>        <div class="description">            Provides the ability to execute one or more arbitrary tasks in a multithreaded manner.  Generally, you can usethe singleton <a ext:cls="Ext.TaskMgr" href="output/Ext.TaskMgr.html">Ext.TaskMgr</a> instead, but if needed, you can create separate instances of TaskRunner.  Anynumber of separate tasks can be started at any time and will run independently of each other.  Example usage:<pre><code><i>// Start a simple clock task that updates a div once per second</i><b>var</b> task = {    run: <b>function</b>(){        Ext.fly(<em>'clock'</em>).update(<b>new</b> Date().format(<em>'g:i:s A'</em>));    },    interval: 1000 <i>//1 second</i>}<b>var</b> runner = <b>new</b> Ext.util.TaskRunner();runner.start(task);</code></pre>        </div>                <div class="hr"></div>                <a id="Ext.util.TaskRunner-props"></a>        <h2>Public Properties</h2>        <div class="no-members">This class has no public properties.</div>        <a id="Ext.util.TaskRunner-methods"></a>        <h2>Public Methods</h2>                <table cellspacing="0" class="member-table">            <tr>                <th class="sig-header" colspan="2">Method</th>                <th class="msource-header">Defined By</th>            </tr>                <tr class="method-row expandable">        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>        <td class="sig">        <a id="Ext.util.TaskRunner-TaskRunner"></a>            <b>TaskRunner</b>(&nbsp;<span class="optional" title="Optional">[<code>Number interval</code>]</span>&nbsp;)            <div class="mdesc">                        <div class="short"></div>            <div class="long">                    <div class="mdetail-params">        <strong>Parameters:</strong>        <ul><li><code>interval</code> : Number<div class="sub-desc">(optional) The minimum precision in milliseconds supported by this TaskRunner instance(defaults to 10)</div></li>        </ul>        <strong>Returns:</strong>        <ul>            <li><code></code></li>        </ul>    </div>                </div>                        </div>        </td>        <td class="msource">TaskRunner</td>    </tr>        <tr class="method-row alt expandable">        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>        <td class="sig">        <a id="Ext.util.TaskRunner-start"></a>            <b>start</b>(&nbsp;<span class="optional" title="Optional">[<code>Object task</code>]</span>&nbsp;) : Object            <div class="mdesc">                        <div class="short">Starts a new task.</div>            <div class="long">                Starts a new task.    <div class="mdetail-params">        <strong>Parameters:</strong>        <ul><li><code>task</code> : Object<div class="sub-desc">A config object that supports the following properties:<ul><li><code>run</code> : Function<div class="sub-desc">The function to execute each time the task is run. Thefunction will be called at each interval and passed the <code>args</code> argument if specified. If aparticular scope is required, be sure to specify it using the <code>scope</scope> argument.</div></li><li><code>interval</code> : Number<div class="sub-desc">The frequency in milliseconds with which the taskshould be executed.</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) An array of arguments to be passed to the functionspecified by <code>run</code>.</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope in which to execute the<code>run</code> function.</div></li><li><code>duration</code> : Number<div class="sub-desc">(optional) The length of time in milliseconds to executethe task before stopping automatically (defaults to indefinite).</div></li><li><code>repeat</code> : Number<div class="sub-desc">(optional) The number of times to execute the task beforestopping automatically (defaults to indefinite).</div></li></ul></div></li>        </ul>        <strong>Returns:</strong>        <ul>            <li><code>Object</code><div class="sub-desc">The task</div></li>        </ul>    </div>                </div>                        </div>        </td>        <td class="msource">TaskRunner</td>    </tr>        <tr class="method-row expandable">        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>        <td class="sig">        <a id="Ext.util.TaskRunner-stop"></a>            <b>stop</b>(&nbsp;<code>Object task</code>&nbsp;) : Object            <div class="mdesc">                        <div class="short">Stops an existing running task.</div>            <div class="long">                Stops an existing running task.    <div class="mdetail-params">        <strong>Parameters:</strong>        <ul><li><code>task</code> : Object<div class="sub-desc">The task to stop</div></li>        </ul>        <strong>Returns:</strong>        <ul>            <li><code>Object</code><div class="sub-desc">The task</div></li>        </ul>    </div>                </div>                        </div>        </td>        <td class="msource">TaskRunner</td>    </tr>        <tr class="method-row alt expandable">        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>        <td class="sig">        <a id="Ext.util.TaskRunner-stopAll"></a>            <b>stopAll</b>() : void            <div class="mdesc">                        <div class="short">Stops all tasks that are currently running.</div>            <div class="long">                Stops all tasks that are currently running.    <div class="mdetail-params">        <strong>Parameters:</strong>        <ul><li>None.</li>        </ul>        <strong>Returns:</strong>        <ul>            <li><code>void</code></li>        </ul>    </div>                </div>                        </div>        </td>        <td class="msource">TaskRunner</td>    </tr>            </table>                <a id="Ext.util.TaskRunner-events"></a>        <h2>Public Events</h2>        <div class="no-members">This class has no public events.</div>        </div>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -