43 lines
1016 B
PHP
43 lines
1016 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Facades\CommonService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class AsynHttp implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $method, $url, $data, $headers;
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($method, $url, $data=[], $headers=[])
|
|
{
|
|
$this->method = $method;
|
|
$this->url = $url;
|
|
$this->data = $data;
|
|
$this->headers = $headers;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
Log::info("异步http请求");
|
|
CommonService::http($this->method, $this->url, $this->data,$this->headers);
|
|
}
|
|
}
|