Inherits from Dispatcher
A class that represents a Dispatcher that can also execute TaskSequences.
activeTask | Accesses the task that is currently being executed by the object. |
activeTaskSequence | Accesses the task sequence that is currently being executed by the object. |
readonly TaskSequence.Task activeTask
Accesses the task that is currently being executed by the object.
TaskExecuter obj = Model.find("Operator1");
int taskType = obj.activeTask.type;
...
readonly TaskSequence activeTaskSequence
Accesses the task sequence that is currently being executed by the object.
TaskExecuter obj = Model.find("Operator1");
double tsPriority = obj.activeTaskSequence.priority;
...