-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAggregateInterface.php
More file actions
55 lines (47 loc) · 1.32 KB
/
AggregateInterface.php
File metadata and controls
55 lines (47 loc) · 1.32 KB
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
declare(strict_types=1);
namespace SonsOfPHP\Component\EventSourcing\Aggregate;
use SonsOfPHP\Component\EventSourcing\Exception\EventSourcingException;
use SonsOfPHP\Component\EventSourcing\Message\MessageInterface;
/**
* Aggregate.
*
* Usage:
* $aggregate = new DummyAggregate('unique-id');
*
* @author Joshua Estes <joshua@sonsofphp.com>
*/
interface AggregateInterface
{
/**
* Returns the Aggregate ID.
*/
public function getAggregateId(): AggregateIdInterface;
/**
* Returns the Aggregate Version.
*/
public function getAggregateVersion(): AggregateVersionInterface;
/**
* Returns and clears the pending events.
*
* Returned events should be persisted in the Event Store and dispatched
* using the Event Dispatcher
*
* @return MessageInterface[]
*/
public function getPendingEvents(): iterable;
/**
* Returns pending events, but does not clear them out
*
* @return MessageInterface[]
*/
public function peekPendingEvents(): iterable;
/**
* Build Aggregate from a collection of Domain Events.
*
* @param iterable $events yields MessageInterface objects
*
* @throws EventSourcingException
*/
public static function buildFromEvents(AggregateIdInterface $id, iterable $events): self;
}