PHP code example of dilab / queueable

1. Go to this page and download the library: Download dilab/queueable library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dilab / queueable example snippets



class SendEmailJob implements JobContract
{
    public function handle(Payload $payload)
    {
        return 'Sending an email to user ' . $payload->get('name');
    }

}

$driver = new InMemoryDriver();

$queue = new Queue('email', $driver);

$queue->push(
    new SendEmailJob(),
    new Payload(['name' => 'Xu'])
);

$worker = new Worker($queue);

$worker->work($maxTries = 5, $sleepSecs = 5);

$worker->attach('heartbeat', function () use ($queueName) {
    // do something useful
});

$worker->attach('beforeCompleteJob', function () {
    // do something useful
});

$worker->attach('afterCompleteJob', function () {
    // do something useful
});

$worker->attach('onError', function ($failedJob, $message, $trace) {
    // send an email
});