X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/docs/source/TaskMgr.html diff --git a/docs/source/TaskMgr.html b/docs/source/TaskMgr.html index cd73414a..c644dc3d 100644 --- a/docs/source/TaskMgr.html +++ b/docs/source/TaskMgr.html @@ -1,11 +1,18 @@ - - - The source code - - - - -
/** + + + + The source code + + + + +
/*!
+ * Ext JS Library 3.3.1
+ * Copyright(c) 2006-2010 Sencha Inc.
+ * licensing@sencha.com
+ * http://www.sencha.com/license
+ */
+
/** * @class Ext.util.TaskRunner * Provides the ability to execute one or more arbitrary tasks in a multithreaded * manner. Generally, you can use the singleton {@link Ext.TaskMgr} instead, but @@ -31,6 +38,7 @@ Ext.TaskMgr.start({ }); *
+ *

See the {@link #start} method for details about how to configure a task object.

* Also see {@link Ext.util.DelayedTask}. * * @constructor @@ -102,21 +110,25 @@ Ext.util.TaskRunner = function(interval){
/** * Starts a new task. * @method start - * @param {Object} task A config object that supports the following properties:

+ *

Before each invocation, Ext injects the property taskRunCount into the task object so + * that calculations based on the repeat count can be performed.

* @return {Object} The task */ this.start = function(task){ @@ -170,8 +182,9 @@ var task = { } Ext.TaskMgr.start(task);
+ *

See the {@link #start} method for details about how to configure a task object.

* @singleton */ -Ext.TaskMgr = new Ext.util.TaskRunner(); - +Ext.TaskMgr = new Ext.util.TaskRunner(); + \ No newline at end of file