Choosing Event Streams for Projection
PHP Event Streams
Choosing Event Streams for Projection
From Single Stream
#[Projection("basketList", Basket::class)]
class BasketList
{
#[EventHandler]
public function addBasket(BasketWasCreated $event) : void
{
// do something
}
}From Multiple Streams
From Category
Handling Events By Names
Speeding Up Projection Restore
Last updated
Was this helpful?