Laravel - Get queue data before run

1.1k Views Asked by At

I want to send a custom data in my queues and want to catch this data before action running.

The best possibility for me would be to send a header value, so I could use getallheaders() to read this data, but I did read and don't found this possibility.

Since it isn't possible send header, how can I read data before async back execute?

Update

I have multiple databases, because of that I have problem with Queueable properties.

I don't have the default connection:

'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),

Otherwise I have:

'connections' => [
   'database1' => [//...],
   'database2' => [//...],
]

My project work fine, I can do migrations and everything without problem. But how I haven't a "default" database, I need to set him on load, so my problem in queue objects is Because I don't know which database to choose.

To know which database to choose I need to know by queue.

1

There are 1 best solutions below

0
On

Creating Jobs
https://laravel.com/docs/6.x/queues#creating-jobs

You can assign the connection name to a property when you queue the job. Any properties will be serialized for use later when the job is run from the queue. Just retrieve the value and use it as required.

SomeJob.php

class SomeJob implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    // make a property to store the connection
    protected $connection;

    public function __construct()
    {
        // do some logic to determine which connection should be used and store it
        $this->connection = 'database1';
    }

    public function handle()
    {
        // run the job using the stored connection
        DB::connection($this->connection)->select(...);
    }
}