forked from CodelyTV/php-ddd-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InMemorySymfonyCommandBus.php
41 lines (35 loc) · 1.29 KB
/
InMemorySymfonyCommandBus.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
declare(strict_types=1);
namespace CodelyTv\Shared\Infrastructure\Bus\Command;
use CodelyTv\Shared\Domain\Bus\Command\Command;
use CodelyTv\Shared\Domain\Bus\Command\CommandBus;
use CodelyTv\Shared\Infrastructure\Bus\CallableFirstParameterExtractor;
use Symfony\Component\Messenger\Exception\HandlerFailedException;
use Symfony\Component\Messenger\Exception\NoHandlerForMessageException;
use Symfony\Component\Messenger\Handler\HandlersLocator;
use Symfony\Component\Messenger\MessageBus;
use Symfony\Component\Messenger\Middleware\HandleMessageMiddleware;
final class InMemorySymfonyCommandBus implements CommandBus
{
private MessageBus $bus;
public function __construct(iterable $commandHandlers)
{
$this->bus = new MessageBus(
[
new HandleMessageMiddleware(
new HandlersLocator(CallableFirstParameterExtractor::forCallables($commandHandlers))
),
]
);
}
public function dispatch(Command $command): void
{
try {
$this->bus->dispatch($command);
} catch (NoHandlerForMessageException $unused) {
throw new CommandNotRegisteredError($command);
} catch (HandlerFailedException $error) {
throw $error->getPrevious();
}
}
}