Replies: 1 comment
-
@alexeyzimarev, could you please share your approach? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The question in the title has been haunting me for a while. Don't recall stumbling upon anything related to that.
Given we have an eventuous-driven system which makes orders based on external market data. Events from that external market system are completely unaware of our system.
Incoming event:
record MarketEvent(int updatedValue);
Simplified method in a generic class that is subscribed to external marked data:
To keep it simple let's suppose we are not filtering aggregates, meaning all aggregates are interested in the event. We still need all aggregate ids.
Load
method requires a StreamName which contains an aggregate id.Beta Was this translation helpful? Give feedback.
All reactions