Replies: 1 comment 4 replies
-
@m2mtech just to confirm, do you mean And how do you execute those projections synchronous/asynchronous/polling? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I have two projectors reacting to the same event from one stream. One projector listens solely to this stream (performing primary processing) while the other listens to two streams, relying on the result from the primary one. I tried using
#[Priority]
to enforce that the single-stream projector runs first, but it appears that the priority is ignored.Here's a simplified code example:
Could it be that
#[Priority]
only applies within the same projector, or is there another recommended approach to ensure the proper execution order across different projectors?Note: This question is non-urgent as I've already resolved my issue by using subevents for the low priority projection.
Thanks for any insights!
Beta Was this translation helpful? Give feedback.
All reactions