Microservices - Event-Driven Architecture
If an event store contains these events:
1: ProductAdded {productId: 10, qty: 5}
2: ProductRemoved {productId: 10, qty: 2}
What is the total quantity after replay?
1: ProductAdded {productId: 10, qty: 5}
2: ProductRemoved {productId: 10, qty: 2}
What is the total quantity after replay?
