vendor/symfony/messenger/EventListener/StopWorkerOnSigtermSignalListener.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Messenger\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\Messenger\Event\WorkerStartedEvent;
  13. /**
  14.  * @author Tobias Schultze <http://tobion.de>
  15.  */
  16. class StopWorkerOnSigtermSignalListener implements EventSubscriberInterface
  17. {
  18.     public function onWorkerStarted(WorkerStartedEvent $event): void
  19.     {
  20.         pcntl_signal(\SIGTERM, static function () use ($event) {
  21.             $event->getWorker()->stop();
  22.         });
  23.     }
  24.     public static function getSubscribedEvents()
  25.     {
  26.         if (!\function_exists('pcntl_signal')) {
  27.             return [];
  28.         }
  29.         return [
  30.             WorkerStartedEvent::class => ['onWorkerStarted'100],
  31.         ];
  32.     }
  33. }