49 return $this->user_id ?? 0;
59 $this->percentages[spl_object_hash($task)] =
$percentage;
60 $this->calculateOverallPercentage();
70 $this->current_task = $task;
76 $this->total_number_of_tasks = count($this->tasks);
77 $this->root_task = $task;
78 foreach ($this->tasks as $subTask) {
79 $this->percentages[spl_object_hash($subTask)] = 0;
86 public function calculateOverallPercentage():
void 92 foreach ($this->tasks as $task) {
93 if ($task instanceof
Job) {
98 $this->percentage = intval(array_sum($this->percentages) / $countable_tasks);
118 return isset($this->current_task);
134 foreach ($this->
getTask()->unfoldTask() as $task) {
136 throw new Exception(
"Your task contains user interactions and thus needs a user that observes the task.");
152 throw new Exception(
"Cannot continue a task that is not in the state 'user interaction'");
156 throw new Exception(
"Observer is in an invalid state! state: userInteraction but current task is not a user interaction!");
160 $inputs = $currentTask->getInput();
161 $resulting_value = $currentTask->interaction(
$inputs, $option, $this);
163 if ($currentTask === $this->root_task) {
178 $tasks = $this->
getTask()->unfoldTask();
180 foreach ($tasks as $task) {
182 foreach ($task->getInput() as $input) {
184 $newInputs[] = $resulting_value;
186 $newInputs[] = $input;
189 $task->setInput($newInputs);
219 $this->last_heartbeat = $now->getTimestamp();
setCurrentTask(Task $task)
getLastHeartbeat()
When was the last time that something happened on this bucket?
setDescription(string $description)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOverallPercentage(int $percentage)
setPercentage(Task $task, int $percentage)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
foreach($mandatory_scripts as $file) $timestamp
heartbeat()
There was something going on in the bucket, it's still working.
replaceThunkValue(Task $currentTask, Value $resulting_value)
In the structure of the task of this bucket the result of $currentTask is replaced with the $resultin...
int $total_number_of_tasks
setLastHeartbeat(int $timestamp)
userInteraction(Option $option)