Skip to content

vkoori/identifier-queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

composer require vkoori/identifier-queue

Register service providers

Luemn

Add this lines to bootstrap/app.php file.

$app->register(\Kooriv\Queue\Providers\QueueServiceProvider::class);

Laravel

For Laravel versions before 5.5 or if not using auto-discovery, register the service provider in config/app.php

Add connection to config/queue.php:

'identify' => [
    'driver' => 'identify',
    'table' => 'identify_jobs',
    'queue' => 'default',
    'retry_after' => 90,
    'after_commit' => false,
]

Create database table

php artisan queue:identifier-table

php artisan migrate

Note

This table is fully compatible with the Lumen/Laravel database driver. So don't be afraid when using this table.

Dispatching job

You can dispatch your jobs in the queue using the helper function below

dispatcher(new ExampleJob)->onConnection("identify")->onQueue("queue")->setIdentifier("identifier");

Note

If you want to set an identifierCode, your job must have use following trait:

use \Kooriv\Queue\Illuminate\Bus\Trait\IdentifierCode;

Note

Using this helper function will not cause any damage to other drivers.

About

This package is created for dispatching queues that have a identifier field for searching. Note: support laravel and lumen both.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages