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

51 lines
1.2 KiB
PHP
Raw Normal View History

<?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>
*/
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')) {
2018-03-13 16:34:51 +00:00
pcntl_signal(SIGTERM, function () {
$this->receiver->stop();
});
}
$this->receiver->receive(function (?Envelope $envelope) {
if (null === $envelope) {
2018-03-13 16:34:51 +00:00
return;
}
$this->bus->dispatch($envelope->with(new ReceivedMessage()));
2018-03-13 16:34:51 +00:00
});
}
}