Hello,
We are trying to use a Saga as a way to synchronize two contexts. An event in context A means we have to replay all events and send commands and/or build projections in context B.
For this to work we would need a new Saga instance for each synchronization task (a @StartSaga @SagaEventHandler(…) annotated method should do that), but we also need each instance to get its own token entry.
I read this part of the documentation which makes me think there should be a way to do it, but I just can’t find it : https://docs.axoniq.io/reference-guide/configuring-infrastructure-components/event-processing/event-processors#sagas
Thank you for your help