Download the PHP package spiral/roadrunner-jobs without Composer
On this page you can find all versions of the php package spiral/roadrunner-jobs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download spiral/roadrunner-jobs
More information about spiral/roadrunner-jobs
Files in spiral/roadrunner-jobs
Package roadrunner-jobs
Short Description RoadRunner Queues (Jobs) plugin API library
License MIT
Homepage https://roadrunner.dev/
Informations about the package roadrunner-jobs
RoadRunner Jobs Plugin
This repository contains the codebase PHP bridge using RoadRunner Jobs plugin.
Installation
To install application server and Jobs codebase
You can use the convenient installer to download the latest available compatible version of RoadRunner assembly:
Configuration
First you need to add at least one jobs adapter to your RoadRunner configuration. For example, such a configuration would be quite feasible to run:
Note Read more about all available drivers on the documentation page.
After starting the server with this configuration, one driver named local
will be available to you.
Usage
Producer
The following code will allow writing and reading an arbitrary value from the RoadRunner server.
Consumer
The Consumer processes tasks from RoadRunner server and responds based on the processing outcome:
ack
- is used for positive acknowledgements.nack
- is used for negative acknowledgements.requeue
- is used for requeuing the task.
The behavior of the nack
method depends on its implementation by the queue driver. It can accept an additional
parameter redelivery; if it is passed and set to true, the task will be requeued. However, not all drivers
support this functionality. If the redelivery parameter is not passed, set to false, or the queue driver's
implementation does not support it, the task will not be requeued.
The requeue
method is implemented by RoadRunner and does not depend on the queue driver. It allows you to resend
the task to the end of the queue and add additional headers to the task.
The nack
and requeue
methods have the ability to specify a delay for requeuing the task. To do this, call
the withDelay
method and pass the desired value before invoking the nack
or requeue
methods.
License
The MIT License (MIT). Please see LICENSE
for more information. Maintained
by Spiral Scout.
All versions of roadrunner-jobs with dependencies
ext-json Version *
ramsey/uuid Version ^3 || ^4
roadrunner-php/roadrunner-api-dto Version ^1.0
spiral/goridge Version ^4.0
spiral/roadrunner Version ^2023.1 || ^2024.1
spiral/roadrunner-worker Version ^3.0