/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_util_DelayedTask({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
The DelayedTask class provides a convenient way to \"buffer\" the execution of a method,\nperforming setTimeout where a new timeout cancels the old timeout. When called, the\ntask will wait the specified time period before executing. If durng that time period,\nthe task is called again, the original call will be cancelled. This continues so that\nthe function is only called a single time for each iteration.
\n\n\nThis method is especially useful for things like detecting whether a user has finished\ntyping in a text field. An example would be performing validation on a keypress. You can\nuse this class to buffer the keypress events for a certain number of milliseconds, and\nperform only if they stop for that amount of time. Usage:
\n\n\nvar task = new Ext.util.DelayedTask(function(){\n alert(Ext.getDom('myInputField').value.length);\n});\n// Wait 500ms before calling our function. If the user presses another key \n// during that 500ms, it will be cancelled and we'll wait another 500ms.\nExt.get('myInputField').on('keypress', function(){\n task.delay(500); \n});\n
\n\n\n\n\nNote that we are using a DelayedTask here to illustrate a point. The configuration\noption buffer for addListener/on will\nalso setup a delayed task for you to buffer events.
\n\nThe parameters to this constructor serve as defaults and are not required.
\nThe default function to call.
\nThe default scope (The this
reference) in which the\nfunction is called. If not specified, this
will refer to the browser window.
The default Array of arguments.
\nCancels any pending timeout and queues a new one
\nThe milliseconds to delay
\nOverrides function passed to constructor
\nOverrides scope passed to constructor. Remember that if no scope\nis specified, this
will refer to the browser window.
Overrides args passed to constructor
\n