I might be confused with some terminology so don't hesitate to correct me.
Events generated by my write model can be handle by my readmodel and can also cross the boundaries of my bounded context and be handled in other bounded context?
If this is correct, if I handle the events in a bounded context B, and B is also implemented using CQRS, is it consider as handled in a readmodel?
Thanks
--
You received this message because you are subscribed to the Google Groups "DDD/CQRS" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dddcqrs+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I would like to ask a last question about readmodels.
If I have a handler in the bounded context A which handle the SomethingInAHasHappened and build a readmodel based on the event. If I have a report which display all the "Something" happened in A, where is the UI supposed to be? In the bounded context A? Or elsewhere?
I'm asking this based on all examples that I see on internet, it looks like all UI related parts are out on any BC. Where should I put it?
Thanks!