ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
Job.php
Go to the documentation of this file.
1 <?php
2 
4 
8 
17 interface Job extends Task
18 {
19 
28  public function run(array $input, Observer $observer);
29 
30 
35  public function isStateless();
36 
37 
41  public function getInput();
42 
43 
50  public function getExpectedTimeOfTaskInSeconds();
51 }
run(array $input, Observer $observer)