<?php 
 
/* 
 * This file is part of the Symfony package. 
 * 
 * (c) Fabien Potencier <fabien@symfony.com> 
 * 
 * For the full copyright and license information, please view the LICENSE 
 * file that was distributed with this source code. 
 */ 
 
namespace Symfony\Component\Messenger\EventListener; 
 
use Symfony\Component\EventDispatcher\EventSubscriberInterface; 
use Symfony\Component\Messenger\Event\WorkerStartedEvent; 
 
/** 
 * @author Tobias Schultze <http://tobion.de> 
 */ 
class StopWorkerOnSigtermSignalListener implements EventSubscriberInterface 
{ 
    public function onWorkerStarted(WorkerStartedEvent $event): void 
    { 
        pcntl_signal(\SIGTERM, static function () use ($event) { 
            $event->getWorker()->stop(); 
        }); 
    } 
 
    public static function getSubscribedEvents() 
    { 
        if (!\function_exists('pcntl_signal')) { 
            return []; 
        } 
 
        return [ 
            WorkerStartedEvent::class => ['onWorkerStarted', 100], 
        ]; 
    } 
}