locomotivemtl / charcoal-queue
Queue, Queue items and Queueable objects for Charcoal
Installs: 14 036
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 14
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.0
- locomotivemtl/charcoal-core: ~0.3
- locomotivemtl/charcoal-factory: ~0.4
- psr/log: ^1.0
Requires (Dev)
- php-coveralls/php-coveralls: ^2.0
- phpunit/phpunit: ^5.7 || ^6.5
- squizlabs/php_codesniffer: ^3.0
README
Queue Managers, Queue Items and Queueable objects (through Interface & Trait) for Charcoal.
How to install
composer require locomotivemtl/charcoal-queue`
Dependencies
locomotivemtl/charcoal-core
for theCollectionLoader
locomotivemtl/charcoal-factory
for the queue-item factory.
Queueing System
Queue managers loop queue items. Queue items represent actions to be performed (as defined by the process()
method).
Queue Manager
The queue manager is available as an abstract class: AbstractQueueManager
.
This class implements the QueueManagerInterface
.
The processing speed (throttle) can be controlled via the rate
property, in items per second.
The batch limit (number of items to process per iteration) can be controlled with the limit
property.
The queue can be identified with the queue_id
. It can be set with setQueueId()
.
The queue can be processed with processQueue()
.
If for any reason the items need to be loaded, it can be done with loadQueueItems()
.
There are 4 callbacks that can be defined:
setProcessedCallback()
setItemCallback()
setItemSuccessCallbak()
setItemFailureCallback()
There are only 1 abstract method:
queueItemProto()
which must returns aQueueItemInterface
instance
Queue Items
Queue Items should implement the QueueItemInterface
. This can be helped via the QueueItemTrait
.
Queue items can be identified with a queue_id
. (The same queue_id
used by the queue manager).
Items can be processed with process($callback, $successCallback, $failureCallback)
.
The queue item properties are:
queue_id
queue_item_data
queued_date
processing_date
processed_date
processed
Queuable Objects
The QueueableInterface
defines objects that can be queued. This interface is really simple and only provides:
setQueueId()
which can be inherited fromQueueableTrait
queueId()
(queue_id
getter) which can be inherited fromQueueableTrait
queue($ts = null)
which is abstract and must be written inside class which implement the queueable interface
Development
To install the development environment:
$ composer install --prefer-source
Run tests with
$ composer test
API documentation
- The auto-generated
phpDocumentor
API documentation is available at https://locomotivemtl.github.io/charcoal-queue/docs/master/ - The auto-generated
apigen
API documentation is available at https://codedoc.pub/locomotivemtl/charcoal-queue/master/
Development dependencies
phpunit/phpunit
squizlabs/php_codesniffer
php-coveralls/php-coveralls
Continuous Integration
Coding Style
The Charcoal-Validator module follows the Charcoal coding-style:
- PSR-1
- PSR-2
- PSR-4, autoloading is therefore provided by Composer.
- phpDocumentor comments.
- Read the phpcs.xml file for all the details on code style.
Coding style validation / enforcement can be performed with
composer phpcs
. An auto-fixer is also available withcomposer phpcbf
.
Authors
- Mathieu Ducharme mat@locomotive.ca
License
Charcoal is licensed under the MIT license. See LICENSE for details.