This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Messenger/Worker.php
2018-05-07 15:33:34 +01:00

57 lines
1.3 KiB
PHP

<?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;
use Symfony\Component\Messenger\Asynchronous\Transport\ReceivedMessage;
use Symfony\Component\Messenger\Transport\ReceiverInterface;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*
* @experimental in 4.1
*/
class Worker
{
private $receiver;
private $bus;
public function __construct(ReceiverInterface $receiver, MessageBusInterface $bus)
{
$this->receiver = $receiver;
$this->bus = $bus;
}
/**
* Receive the messages and dispatch them to the bus.
*/
public function run()
{
if (\function_exists('pcntl_signal')) {
pcntl_signal(SIGTERM, function () {
$this->receiver->stop();
});
}
$this->receiver->receive(function ($message) {
if (null === $message) {
return;
}
if (!$message instanceof ReceivedMessage) {
$message = new ReceivedMessage($message);
}
$this->bus->dispatch($message);
});
}
}