1
0
Fork 0
pixelfed/app/Jobs/StatusPipeline/NewStatusPipeline.php

50 lines
980 B
PHP
Raw Normal View History

2018-06-01 03:14:46 +00:00
<?php
namespace App\Jobs\StatusPipeline;
2018-08-28 03:07:36 +00:00
use App\Status;
use Cache;
2018-06-01 03:14:46 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
2018-08-28 03:07:36 +00:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2019-12-11 06:04:03 +00:00
use Illuminate\Support\Facades\Redis;
2018-06-01 03:14:46 +00:00
class NewStatusPipeline implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
2019-01-12 22:19:57 +00:00
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
public $timeout = 5;
public $tries = 1;
2019-01-12 22:19:57 +00:00
2018-06-01 03:14:46 +00:00
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Status $status)
2018-06-01 03:14:46 +00:00
{
$this->status = $status;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
2019-02-26 07:30:54 +00:00
StatusEntityLexer::dispatch($this->status);
2018-06-01 03:14:46 +00:00
}
}