Download the PHP package jc-it/yii2-job-queue-recurring without Composer
On this page you can find all versions of the php package jc-it/yii2-job-queue-recurring. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jc-it/yii2-job-queue-recurring
More information about jc-it/yii2-job-queue-recurring
Files in jc-it/yii2-job-queue-recurring
Package yii2-job-queue-recurring
Short Description Job Queue implementation - Recurring extension.
License MIT
Informations about the package yii2-job-queue-recurring
A recurring job extension for Job Queue for Yii2 based on Beanstalkd
This extension provides a package that implements a way to store recurring jobs in the database for the yii2 job queue.
or add
to the require
section of your composer.json
file.
Configuration
A possible implementation for recurring jobs has been added. This implementation stores the recurrence using the Cron notation and an Active Record model. It can easily be extended by creating own implementations for the AR model and Handler.
To use the recurring jobs with the implementation as provided by the package:
- Add
\JCIT\jobqueue\migrations
to your migration namespaces, or extend a new migration from the migration in the package and run them - Register
\JCIT\jobqueue\jobs\RecurringJob::class
and\JCIT\jobqueue\jobHandlers\RecurringHandler::class
in theContainerMapLocator
(as shown in the configuration) -
Add the recurring action to the controller:
- Run action, i.e.
./yii job-queue/recurring
- Add a recurring job to the database i.e.
Credits
All versions of yii2-job-queue-recurring with dependencies
jc-it/yii2-job-queue Version ^2.0
dragonmantank/cron-expression Version ^3.3