You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
928 B
35 lines
928 B
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Events\LongRunPrivateJobDone;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class LongRunPrivateJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public $id;
|
|
|
|
public function __construct($id)
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
$seconds = 5;
|
|
sleep($seconds);
|
|
|
|
$link = '<a href="'.route('home').'">here</a>';
|
|
event(new LongRunPrivateJobDone(
|
|
$this->id,
|
|
'Long run private job (for '.$this->id.') done after '.$seconds.' seconds. Please check '.$link.'.')
|
|
);
|
|
info('Long run private job (for '.$this->id.') done after '.$seconds.' seconds. Please check '.$link.'.');
|
|
}
|
|
}
|