com.tensegrity.palowebviewer.modules.util.client.taskqueue
Interface ITask

All Known Implementing Classes:
CallInitCallbackTask

public interface ITask

Interface for the tasks. It it use to split a program in to smaller tasks, so we can make some breaks in thre thread that interprets JavaScript on the borwser side and get read of the worning about not responding script.


Method Summary
 void execute()
          The method that is called when the time for the task has come.
 java.lang.String getName()
          Returns the name of the task.
 

Method Detail

getName

java.lang.String getName()
Returns the name of the task. It is used for the debug puposes. And usualy is the name of the implementing class.


execute

void execute()
The method that is called when the time for the task has come.