Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Laravel 5.3, how to get the Job ID after we dispatch a job to the job queue?

In Laravel 5.3, in the controller, we can dispatch a job to the job queue like this:

$job = (new JobClass())->onQueue('queuename');
dispatch($job);

In the Job class which is using InteractsWithQueue trait, in the handle function, we can get the Job ID like this:

$this->job->getJobId();

But, I would like to get the Job ID in my controller after I use the dispatch($job).

How to get the Job ID in controller?

If there is no such function available, can we extend the dispatch helper function to add this function?

like image 537
userpal Avatar asked Dec 27 '16 14:12

userpal


1 Answers

The dispatch() function will return the Job id:

$job = (new JobClass())->onQueue('queuename');
$jobId = dispatch($job);

dd($jobId);
like image 199
baikho Avatar answered Oct 17 '22 10:10

baikho