thenativeweb / node-cqrs-eventdenormalizer

Node-cqrs-eventdenormalizer is a node.js module that implements the cqrs pattern. It can be very useful as eventdenormalizer component if you work with (d)ddd, cqrs, domain, host, etc.
http://cqrs.js.org/pages/eventdenormalizer.html
MIT License
38 stars 27 forks source link

Single task queue to prevent events being denormalized out of order #6

Closed andywer closed 9 years ago

andywer commented 9 years ago

Hi! I just ran into an issue with the denormalizer. Replaying events by using replayStreamed might lead to events being denormalized out of order (if they are denormalized by different ViewBuilders).

This commit fixes it. Please have a look at it.

See you on Monday!

adrai commented 9 years ago

Seams fine... will merge this weekend... PS. I've done it for the non-streamed case and forgot the streamed case... thanks for contribution ;-)