X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/output/Ext.util.TaskRunner.html diff --git a/docs/output/Ext.util.TaskRunner.html b/docs/output/Ext.util.TaskRunner.html deleted file mode 100644 index 0d873761..00000000 --- a/docs/output/Ext.util.TaskRunner.html +++ /dev/null @@ -1,49 +0,0 @@ -
Properties Methods Events Direct Link

Class Ext.util.TaskRunner

Package:Ext.util
Defined In:TaskMgr.js
Class:TaskRunner
Subclasses:TaskMgr
Extends:Object
Provides the ability to execute one or more arbitrary tasks in a multithreaded -manner. Generally, you can use the singleton Ext.TaskMgr instead, but -if needed, you can create separate instances of TaskRunner. Any number of -separate tasks can be started at any time and will run independently of each -other. Example usage: -
// Start a simple clock task that updates a div once per second
-var updateClock = function(){
-    Ext.fly('clock').update(new Date().format('g:i:s A'));
-} 
-var task = {
-    run: updateClock,
-    interval: 1000 //1 second
-}
-var runner = new Ext.util.TaskRunner();
-runner.start(task);
-
-// equivalent using TaskMgr
-Ext.TaskMgr.start({
-    run: updateClock,
-    interval: 1000
-});
-

See the start method for details about how to configure a task object.

-Also see Ext.util.DelayedTask.

Public Properties

This class has no public properties.

Public Methods

MethodDefined By

Public Events

This class has no public events.
\ No newline at end of file