Replies: 2 comments
-
This article helped clarified a confusion i've had about event sourcing, domain events and integration events: https://codeopinion.com/domain-events-in-event-sourcing-not-exactly/ And this stackoverflow question suggests that in Orleans publishing events must be done using streams (when publishing them is indeed the right thing to do): https://stackoverflow.com/questions/57057220/how-to-use-journaledgrain-for-event-sourcing |
Beta Was this translation helpful? Give feedback.
-
Then the remaining question I have is: what would be the best way to design an aggregate JournaledGrain building its state using the events from multiple other grains (we can assume that we have access to the event store inside the grain). |
Beta Was this translation helpful? Give feedback.
-
Hello !
Can the events raised inside a JournalGrain be published and received by other Grain Types? If so how can this be done?
One of the nice things with event sourcing is the ability to have multiple subscribers for events.
Beta Was this translation helpful? Give feedback.
All reactions