mardi 27 décembre 2016

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?



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2izBesr
via IFTTT

Aucun commentaire:

Enregistrer un commentaire