ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BucketMeta.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\BackgroundTasks;
20 
26 interface 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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOverallPercentage(int $percentage)