ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
JobCollection.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Cron\Job;
22 
26 interface JobCollection extends \Countable, \IteratorAggregate
27 {
28  public function add(\ILIAS\Cron\Job\JobEntity $job): void;
29 
35  public function filter(callable $callable): static;
36 
45  public function slice(int $offset, ?int $length = null): static;
46 
50  public function toArray(): array;
51 }
add(\ILIAS\Cron\Job\JobEntity $job)
Interface Observer Contains several chained tasks and infos about them.
slice(int $offset, ?int $length=null)
Extracts a slice of $length elements starting at position $offset from the Collection.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
filter(callable $callable)
Returns all the elements of this collection that satisfy the predicate $callable. ...