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/TraceableMessageBus.php

61 lines
1.3 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;
/**
* @author Samuel Roze <samuel.roze@gmail.com>
*/
class TraceableMessageBus implements MessageBusInterface
{
private $decoratedBus;
private $dispatchedMessages = array();
public function __construct(MessageBusInterface $decoratedBus)
{
$this->decoratedBus = $decoratedBus;
}
/**
* {@inheritdoc}
*/
public function dispatch($message)
{
try {
$result = $this->decoratedBus->dispatch($message);
$this->dispatchedMessages[] = array(
'message' => $message,
'result' => $result,
);
return $result;
} catch (\Throwable $e) {
$this->dispatchedMessages[] = array(
'message' => $message,
'exception' => $e,
);
throw $e;
}
}
public function getDispatchedMessages(): array
{
return $this->dispatchedMessages;
}
2018-05-01 13:54:27 +01:00
public function reset()
{
$this->dispatchedMessages = array();
}
}