Download the PHP package ivantage/ivantagejobqueue without Composer
On this page you can find all versions of the php package ivantage/ivantagejobqueue. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ivantage/ivantagejobqueue
More information about ivantage/ivantagejobqueue
Files in ivantage/ivantagejobqueue
Package ivantagejobqueue
Short Description iVantage Job Queue
License
Homepage http://ivantagehealth.com/
Informations about the package ivantagejobqueue
ivantagejobqueue
A Laminas module for creating abstract Zend Server Job Queue tasks based on Kevin Schroeder's implementation
Installation
Install using composer:
Usage
Job queue tasks are created by defining classes that extend AbstractJobQueueTask
.
Fill in the _execute
method with the actual code that should be run by the job.
To run the task, all you need to do is create an instance of your class and call
the execute
method, passing the URL of the generic job queue endpoint and any
additional parameters
you would like to provide.
ivantagejobqueue
includes a controller which will give you a generic job
queue endpoint at http://mysite.com/jobqueue
.
Known Limitations
- Because
ivantagejobqueue
works by serializing the task object and deserializing it in order to run, the classes that you define for your tasks must be serializable.
All versions of ivantagejobqueue with dependencies
laminas/laminas-component-installer Version ^2.4
laminas/laminas-mvc Version ^3.1
laminas/laminas-dependency-plugin Version ^2.1