-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventDispatchingCommandBus.php
62 lines (53 loc) · 1.59 KB
/
EventDispatchingCommandBus.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/*
* This file is part of the broadway/broadway package.
*
* (c) Qandidate.com <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Broadway\CommandHandling;
use Broadway\EventDispatcher\EventDispatcherInterface;
use Exception;
/**
* Command bus decorator that dispatches events.
*
* Dispatches events signalling whether a command was executed successfully or
* if it failed.
*/
class EventDispatchingCommandBus implements CommandBusInterface
{
const EVENT_COMMAND_SUCCESS = 'broadway.command_handling.command_success';
const EVENT_COMMAND_FAILURE = 'broadway.command_handling.command_failure';
private $commandBus;
private $dispatcher;
public function __construct(CommandBusInterface $commandBus, EventDispatcherInterface $dispatcher)
{
$this->commandBus = $commandBus;
$this->dispatcher = $dispatcher;
}
/**
* {@inheritDoc}
*/
public function dispatch($command)
{
try {
$this->commandBus->dispatch($command);
$this->dispatcher->dispatch(self::EVENT_COMMAND_SUCCESS, ['command' => $command]);
} catch (Exception $e) {
$this->dispatcher->dispatch(
self::EVENT_COMMAND_FAILURE,
['command' => $command, 'exception' => $e]
);
throw $e;
}
}
/**
* {@inheritDoc}
*/
public function subscribe(CommandHandlerInterface $handler)
{
$this->commandBus->subscribe($handler);
}
}