- jobs are packed into jobset
- jobs can be executed orderly or not orderly or combined
- job's execution time is settable
- job would be retried after failed until reached the max retry count
- the max retry count is adjustable
- job's next execution time is settable
- job can be asynchronous (execute and wait feedback)
Recommend to install via composer.
composer require "limen/php-jobs"
A jobset is consist of one or more jobs.
The jobs can be executed orderly or not orderly or combined.
Job has execution time, so you can decide when the job should be executed.
If a job failed, its tried count would increase by 1 and its next execution time is up to you.
The max retry count is also up to you.
If the tried count reached the max retry count, the job would be marked as "failed".
see laravel-jobs
$ phpunit --bootstrap tests/bootstrap.php tests/