* * 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 */ class TraceableMessageBus implements MessageBusInterface { private $decoratedBus; private $dispatchedMessages = array(); public function __construct(MessageBusInterface $decoratedBus) { $this->decoratedBus = $decoratedBus; } /** * {@inheritdoc} */ public function dispatch($message) { $callTime = microtime(true); $messageToTrace = $message instanceof Envelope ? $message->getMessage() : $message; $envelopeItems = $message instanceof Envelope ? array_values($message->all()) : null; try { $result = $this->decoratedBus->dispatch($message); $this->dispatchedMessages[] = array( 'envelopeItems' => $envelopeItems, 'message' => $messageToTrace, 'result' => $result, 'callTime' => $callTime, ); return $result; } catch (\Throwable $e) { $this->dispatchedMessages[] = array( 'envelopeItems' => $envelopeItems, 'message' => $messageToTrace, 'exception' => $e, 'callTime' => $callTime, ); throw $e; } } public function getDispatchedMessages(): array { return $this->dispatchedMessages; } public function reset() { $this->dispatchedMessages = array(); } }