19 declare(strict_types=1);
23 final readonly
class JobEntities implements \ILIAS\Cron\Job\JobCollection
32 $this->jobs = new \ArrayIterator(array_values($jobs));
45 return iterator_count($this);
50 $this->jobs->append($job);
53 public function filter(callable $callable): static
55 return new static(...array_values(array_filter(iterator_to_array($this), $callable)));
58 public function slice(
int $offset, ?
int $length =
null): static
60 return new static(...\array_slice(iterator_to_array($this), $offset, $length,
true));
68 return iterator_to_array($this);
add(\ILIAS\Cron\Job\JobEntity $job)
__construct(\ILIAS\Cron\Job\JobEntity ... $jobs)
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. ...