%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/laravel/horizon/src/Console/ |
| Current File : /home/graphicd/public_html/vebto/vendor/laravel/horizon/src/Console/ContinueCommand.php |
<?php
namespace Laravel\Horizon\Console;
use Illuminate\Console\Command;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Laravel\Horizon\Contracts\MasterSupervisorRepository;
use Laravel\Horizon\MasterSupervisor;
class ContinueCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'horizon:continue';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Instruct the master supervisor to continue processing jobs';
/**
* Execute the console command.
*
* @param \Laravel\Horizon\Contracts\MasterSupervisorRepository $masters
* @return void
*/
public function handle(MasterSupervisorRepository $masters)
{
$masters = collect($masters->all())->filter(function ($master) {
return Str::startsWith($master->name, MasterSupervisor::basename());
})->all();
foreach (Arr::pluck($masters, 'pid') as $processId) {
$this->info("Sending CONT Signal To Process: {$processId}");
if (! posix_kill($processId, SIGCONT)) {
$this->error("Failed to kill process: {$processId} (".posix_strerror(posix_get_last_error()).')');
}
}
}
}