Edit File: OnServerStart.php
<?php namespace Laravel\Octane\Swoole\Handlers; use Laravel\Octane\Swoole\Actions\EnsureRequestsDontExceedMaxExecutionTime; use Laravel\Octane\Swoole\ServerStateFile; use Laravel\Octane\Swoole\SwooleExtension; use Swoole\Timer; class OnServerStart { public function __construct( protected ServerStateFile $serverStateFile, protected SwooleExtension $extension, protected string $appName, protected int $maxExecutionTime, protected $timerTable, protected bool $shouldTick = true, protected bool $shouldSetProcessName = true ) { } /** * Handle the "start" Swoole event. * * @param \Swoole\Http\Server $server * @return void */ public function __invoke($server) { $this->serverStateFile->writeProcessIds( $server->master_pid, $server->manager_pid ); if ($this->shouldSetProcessName) { $this->extension->setProcessName($this->appName, 'master process'); } if ($this->shouldTick) { Timer::tick(1000, function () use ($server) { $server->task('octane-tick'); }); } if ($this->maxExecutionTime > 0) { Timer::tick(1000, function () use ($server) { (new EnsureRequestsDontExceedMaxExecutionTime( $this->extension, $this->timerTable, $this->maxExecutionTime, $server ))(); }); } } }
Back to File Manager