ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
BucketMeta.php
Go to the documentation of this file.
1<?php
2
19namespace ILIAS\BackgroundTasks;
20
26interface BucketMeta
27{
28 public function getUserId(): int;
29
30 public function setUserId(int $user_id): void;
31
32 public function getOverallPercentage(): int;
33
34 public function setOverallPercentage(int $percentage): void;
35
36 public function setState(int $state): void;
37
38 public function getState(): int;
39
40 public function getDescription(): string;
41
42 public function getTitle(): string;
43}
setOverallPercentage(int $percentage)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...