visual-craft / work-queue-bundle
Background jobs scheduling using Beanstalk (Symfony bundle)
Installs: 9 019
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.4.0
- symfony/console: ^6.0|^7.0
- symfony/framework-bundle: ^6.0|^7.0
- symfony/monolog-bundle: ^3.5
- visual-craft/work-queue: ^0.2.0
This package is auto-updated.
Last update: 2025-03-24 11:30:09 UTC
README
Background jobs using Beanstalk (Symfony bundle)
Install
$ composer require visual-craft/work-queue-bundle
Configure
##config/packages/visual_craft_work_queue.yaml visual_craft_work_queue: connections: default: ~ queues: test_queue: connection: default worker: 'App\BackgroundJob\Worker\TestWorker'
Create Worker
<?php declare(strict_types=1); namespace App\BackgroundJob\Worker; use VisualCraft\WorkQueue\Worker\JobMetadata; use VisualCraft\WorkQueue\Worker\WorkerInterface; class TestWorker implements WorkerInterface { public function work($payload, JobMetadata $metadata): void { //.. } }
Add service
services: App\Command\TestCommand: arguments: - '@visual_craft_work_queue.manager.test_queue'
Add queue
//.. private QueueManager $queueManager; public function __construct(QueueManager $queueManager) { $this->queueManager = $queueManager; } //.. $this->queueManager->add('mixed payload'); //..
License
This code is released under the MIT license. See the complete license in the file: LICENSE