You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo is implement all the needed infrastructure for Event-Sourcing operation using .NET
What is Event Sourcing?
Event Sourcing is a kind of Producer / Consumer pattern.
It add a persistence channel which can be travers from start for consumers which didn't consume any events and keep a cursor for consumers which already consumed events in the past.
Event are immutable unit of data which produced by producers.
Consumers will consume the event sequentially.
Stakeholders
Producers -> produce events.
Consumers <- consume events.
Channel: responsible to store produced events in sequence for latter consumption.
and remember the cursor of each consumer (or consumer-group).