File "WorkCommand.php"
Full Path: /var/www/drive/laravel/horizon/src/Console/WorkCommand.php
File size: 2.13 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon\Console;
use Illuminate\Queue\Console\WorkCommand as BaseWorkCommand;
class WorkCommand extends BaseWorkCommand
{
/**
* The console command name.
*
* @var string
*/
protected $signature = 'horizon:work
{connection? : The name of the queue connection to work}
{--name=default : The name of the worker}
{--delay=0 : The number of seconds to delay failed jobs (Deprecated)}
{--backoff=0 : The number of seconds to wait before retrying a job that encountered an uncaught exception}
{--max-jobs=0 : The number of jobs to process before stopping}
{--max-time=0 : The maximum number of seconds the worker should run}
{--daemon : Run the worker in daemon mode (Deprecated)}
{--force : Force the worker to run even in maintenance mode}
{--memory=128 : The memory limit in megabytes}
{--once : Only process the next job on the queue}
{--stop-when-empty : Stop when the queue is empty}
{--queue= : The names of the queues to work}
{--sleep=3 : Number of seconds to sleep when no job is available}
{--rest=0 : Number of seconds to rest between jobs}
{--supervisor= : The name of the supervisor the worker belongs to}
{--timeout=60 : The number of seconds a child process can run}
{--tries=0 : Number of times to attempt a job before logging it failed}';
/**
* Indicates whether the command should be shown in the Artisan command list.
*
* @var bool
*/
protected $hidden = true;
/**
* Execute the console command.
*
* @return void
*/
public function handle()
{
if (config('horizon.fast_termination')) {
ignore_user_abort(true);
}
parent::handle();
}
}