forked from broadway/broadway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleCommandBus.php
55 lines (47 loc) · 1.27 KB
/
SimpleCommandBus.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
<?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;
/**
* Simple synchronous dispatching of commands.
*/
class SimpleCommandBus implements CommandBusInterface
{
private $commandHandlers = array();
private $queue = array();
private $isDispatching = false;
/**
* {@inheritDoc}
*/
public function subscribe(CommandHandlerInterface $handler)
{
$this->commandHandlers[] = $handler;
}
/**
* {@inheritDoc}
*/
public function dispatch($command)
{
$this->queue[] = $command;
if (! $this->isDispatching) {
$this->isDispatching = true;
try {
while ($command = array_shift($this->queue)) {
foreach ($this->commandHandlers as $handler) {
$handler->handle($command);
}
}
$this->isDispatching = false;
} catch (\Exception $e) {
$this->isDispatching = false;
throw $e;
}
}
}
}