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.
 
 
 

40 lines
746 B

<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Support\Facades\Log;
class BilibiliEncode implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $num;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($num)
{
//
$this->num = $num;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//
Log::info('Hello, '.$this->num);
sleep(10);
}
}